Textractor_test/CMakeLists.txt

34 lines
660 B
CMake
Raw Normal View History

2015-04-02 22:22:52 +08:00
cmake_minimum_required(VERSION 2.8)
set(CMAKE_CONFIGURATION_TYPES Debug Release)
2018-07-14 22:20:28 +08:00
project(NextHooker)
2015-04-02 22:22:52 +08:00
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/Debug")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/Release")
add_compile_options(
#/Zc:auto # config.pri
/wd4819 # config.pri
/MP
/GS-
)
add_definitions(
/D_SECURE_SCL=0 # config.pri
/D_SCL_SECURE_NO_WARNINGS # config.pri
/D_CRT_SECURE_NO_WARNINGS # config.pri
/DUNICODE # config.pri
/D_UNICODE
/D_CRT_NON_CONFORMING_SWPRINTFS # common.pri
/DITH_HAS_CRT
2015-04-02 22:22:52 +08:00
)
include_directories(
.
2018-07-21 03:10:34 +08:00
texthook
2015-04-02 22:22:52 +08:00
)
2018-07-21 03:10:34 +08:00
add_subdirectory(texthook)
add_subdirectory(vnrhook)