Files
nostalgia/src/nostalgia/modules/sound/src/CMakeLists.txt
Gary Talent 6c194667b9
All checks were successful
Build / build (push) Successful in 1m27s
[nostalgia] Fix NostalgiaGfx lib name, stub out sound package
2025-02-19 22:19:16 -06:00

28 lines
357 B
CMake

add_library(
NostalgiaSound
sound.cpp
)
target_include_directories(
NostalgiaSound PUBLIC
../include
)
target_link_libraries(
NostalgiaSound PUBLIC
Turbine
)
add_subdirectory(keel)
if(NOSTALGIA_BUILD_STUDIO)
add_subdirectory(studio)
endif()
install(
TARGETS
NostalgiaSound
DESTINATION
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)