overte/tools/scribe/CMakeLists.txt
2018-02-07 09:44:45 -08:00

8 lines
301 B
CMake
Executable file

set(TARGET_NAME scribe)
# don't use the setup_hifi_project macro as we don't want Qt or GLM dependencies
file(GLOB TARGET_SRCS src/*)
add_executable(${TARGET_NAME} ${TARGET_SRCS})
if (WIN32)
set_property(TARGET ${TARGET_NAME} APPEND_STRING PROPERTY LINK_FLAGS_DEBUG "/OPT:NOREF /OPT:NOICF")
endif()