mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:27:04 +02:00
8 lines
301 B
CMake
Executable file
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()
|