Textractor_test/CMakeLists.txt

127 lines
3.0 KiB
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_INSTALL_PREFIX "" CACHE FILEPATH "installation path")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/Debug")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/Release")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/Debug")
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/Release")
set(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION ON)
2018-07-13 23:47:16 +08:00
execute_process(COMMAND "cmd" " /C date /T" OUTPUT_VARIABLE FULLDATE)
# set(DATE "07/13/2018")
2018-07-19 11:40:44 +08:00
string(SUBSTRING ${FULLDATE} 4 10 BUILD_DATE)
2018-07-13 23:47:16 +08:00
set(BUILD_DATE ${BUILD_DATE})
2015-04-02 22:22:52 +08:00
set(CPACK_GENERATOR "ZIP")
2018-07-13 23:47:16 +08:00
set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 0)
2018-07-19 11:40:44 +08:00
set(CPACK_PACKAGE_VERSION_PATCH 4)
2015-04-02 22:22:52 +08:00
set(CPACK_SOURCE_GENERATOR "ZIP")
set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\\\.svn/;/\\\\.bzr/;/\\\\.hg/;/\\\\.git/;\\\\.swp$;\\\\.#;/#" ".*\\\\.user$" "\\\\.gitignore$" "\\\\.gitmodules$" "\\\\.git$")
include(CPack)
add_compile_options(
#/Zc:auto # config.pri
/wd4819 # config.pri
/MP
/GS-
2018-07-20 03:47:48 +08:00
$<$<CONFIG:MinSizeRel>:/MT>
2018-07-20 09:44:03 +08:00
#$<$<CONFIG:Debug>:/MTd>
2015-04-02 22:22:52 +08:00
)
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
2018-07-21 03:50:26 +08:00
${CMAKE_BINARY_DIR}/oldgui
2015-04-02 22:22:52 +08:00
)
set(resource_src
2018-07-21 03:50:26 +08:00
oldgui/ITHVNR.rc
oldgui/icon1.ico
2015-04-02 22:22:52 +08:00
)
2018-07-14 22:20:28 +08:00
set(nexthooker_src
2018-07-21 03:50:26 +08:00
oldgui/command.cpp
oldgui/ITH.h
oldgui/language.cpp
oldgui/language.h
oldgui/main.cpp
oldgui/ProcessWindow.cpp
oldgui/ProcessWindow.h
oldgui/ProfileManager.cpp
oldgui/ProfileManager.h
oldgui/resource.h
oldgui/utility.cpp
oldgui/utility.h
${CMAKE_BINARY_DIR}/oldgui/version.h
oldgui/version.h.in
oldgui/window.cpp
oldgui/window.h
oldgui/TextBuffer.cpp
oldgui/TextBuffer.h
oldgui/profile/Profile.h
oldgui/profile/Profile.cpp
oldgui/profile/pugiconfig.h
oldgui/profile/pugixml.cpp
oldgui/profile/pugixml.h
oldgui/profile/misc.h
oldgui/profile/misc.cpp
2015-04-02 22:22:52 +08:00
${resource_src}
)
source_group("Resource Files" FILES ${resource_src})
2018-07-14 22:20:28 +08:00
add_executable(${PROJECT_NAME} ${nexthooker_src})
2015-04-02 22:22:52 +08:00
2018-07-21 03:10:34 +08:00
add_subdirectory(texthook)
add_subdirectory(vnrhook)
# add_subdirectory(profile)
2015-04-02 22:22:52 +08:00
set_target_properties(${PROJECT_NAME} PROPERTIES
LINK_FLAGS "/SUBSYSTEM:WINDOWS /MANIFESTDEPENDENCY:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\""
)
target_compile_definitions(${PROJECT_NAME}
PRIVATE
PSAPI_VERSION=1
DEFAULT_MM
)
target_link_libraries(${PROJECT_NAME}
2018-07-21 02:55:58 +08:00
#profile
2015-04-02 22:22:52 +08:00
vnrhost
2018-06-13 12:52:44 +08:00
#ithsys
#${WDK_HOME}/lib/wxp/i386/ntdll.lib
2015-04-02 22:22:52 +08:00
comctl32.lib
psapi.lib
)
target_compile_options(${PROJECT_NAME}
PRIVATE
/EHsc
)
install(TARGETS ${PROJECT_NAME}
DESTINATION .
CONFIGURATIONS Release
)
2018-07-21 03:50:26 +08:00
configure_file(oldgui/version.h.in oldgui/version.h)