mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
3bd07d1f7e
Properly include and reuse produced static lib in other components.
9 lines
134 B
CMake
9 lines
134 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
musicapi.cpp)
|
|
|
|
add_library(d3music STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(d3music PRIVATE
|
|
music
|
|
)
|