28 lines
357 B
CMake
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
|
|
)
|