Textractor_test/texthook/CMakeLists.txt

28 lines
422 B
CMake
Raw Normal View History

2018-07-21 03:10:34 +08:00
project(host)
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
)