Merge commit '587dd924142c959b812ca340eab52af35ac4096c' as 'deps/nostalgia'

This commit is contained in:
2023-12-23 14:17:05 -06:00
1112 changed files with 283489 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
add_executable(nostalgia-pack)
target_link_libraries(
nostalgia-pack
KeelPack-AppLib
NostalgiaKeelModules
NostalgiaProfile
OlympicApplib
)
if(CMAKE_BUILD_TYPE STREQUAL "Release" AND NOT WIN32)
# enable LTO
set_property(TARGET nostalgia-pack PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
endif()
install(
TARGETS
nostalgia-pack
RUNTIME DESTINATION
bin
)