mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
9 lines
No EOL
305 B
CMake
9 lines
No EOL
305 B
CMake
MACRO(SETUP_HIFI_LIBRARY TARGET)
|
|
project(${TARGET_NAME})
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB LIB_SRCS src/*.h src/*.cpp)
|
|
|
|
# create a library and set the property so it can be referenced later
|
|
add_library(${TARGET_NAME} ${LIB_SRCS})
|
|
ENDMACRO(SETUP_HIFI_LIBRARY _target) |