Descent3/music/CMakeLists.txt
Azamat H. Hackimov 4826c37a69 Add BUILD_INTERFACE to cfile module
Other modules that depends on it, can reuse includes on linking.
There some files formally not belonging any packages (lib directory), as workaround there temporary include_directories(cfile) on root of project. After migrating all modules this can be removed.
2024-04-24 00:41:02 +03:00

12 lines
167 B
CMake

set(HEADERS)
set(CPPS
omflex.cpp
sequencer.cpp
streamer.cpp
tracklist.cpp)
add_library(music STATIC ${HEADERS} ${CPPS})
target_link_libraries(music
cfile
)