thunderbrew/src/sound/CMakeLists.txt
2023-01-02 13:17:18 -06:00

16 lines
233 B
CMake

file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(sound STATIC
${PRIVATE_SOURCES}
)
target_include_directories(sound
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(sound
PRIVATE
ui
util
)