mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 03:01:49 +01:00
11 lines
No EOL
245 B
CMake
11 lines
No EOL
245 B
CMake
set(MUSICMGR_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
file(GLOB MUSICMGR_SRC
|
|
"${MUSICMGR_PATH}/*.cpp"
|
|
"${MUSICMGR_PATH}/*.hpp"
|
|
)
|
|
|
|
add_library(MusicMgr STATIC ${MUSICMGR_SRC})
|
|
set_support_defaults(MusicMgr)
|
|
|
|
target_link_libraries(MusicMgr Entropy) |