Textractor_test/host/CMakeLists.txt

26 lines
407 B
CMake
Raw Normal View History

set(vnrhost_src
host.h
2018-07-19 12:46:52 +08:00
pipe.h
textthread.h
2018-07-21 05:21:35 +08:00
winmutex.h
host.cc
pipe.cc
textthread.cc
)
add_library(vnrhost SHARED ${vnrhost_src})
set_target_properties(vnrhost PROPERTIES LINK_FLAGS /SUBSYSTEM:WINDOWS)
target_compile_options(vnrhost PRIVATE
# /GR-
$<$<CONFIG:Release>:>
$<$<CONFIG:Debug>:>
)
target_compile_definitions(vnrhost
PRIVATE
ITH_HAS_CRT
_CRT_NON_CONFORMING_SWPRINTFS
)