mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-18 09:09:41 +02:00
9 lines
No EOL
263 B
CMake
9 lines
No EOL
263 B
CMake
MACRO(SETUP_HIFI_PROJECT TARGET)
|
|
project(${TARGET})
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB TARGET_SRCS src/*.cpp src/*.h)
|
|
|
|
# add the executable
|
|
add_executable(${TARGET} ${TARGET_SRCS})
|
|
ENDMACRO(SETUP_HIFI_PROJECT _target) |