Remove Qt dependency from scribe

This commit is contained in:
Bradley Austin Davis 2018-02-07 09:44:45 -08:00
parent 6092f1503e
commit a578e64416

View file

@ -1,3 +1,8 @@
set(TARGET_NAME scribe)
setup_hifi_project()
# 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()