mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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) |