mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 21:16:00 +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) |