mirror of
https://github.com/overte-org/overte.git
synced 2025-06-03 18:51:37 +02:00
10 lines
319 B
CMake
10 lines
319 B
CMake
set(TARGET_NAME shreflect)
|
|
|
|
# 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})
|
|
target_json()
|
|
|
|
if (WIN32)
|
|
set_property(TARGET ${TARGET_NAME} APPEND_STRING PROPERTY LINK_FLAGS_DEBUG "/OPT:NOREF /OPT:NOICF")
|
|
endif()
|