Textractor/texthook/CMakeLists.txt

33 lines
612 B
CMake
Raw Normal View History

2018-09-02 12:48:43 -04:00
include_directories(. util)
2018-07-20 15:10:34 -04:00
2019-02-16 03:17:16 -05:00
if(${CMAKE_SIZEOF_VOID_P} EQUAL 8)
2019-03-13 11:54:19 -04:00
set(texthook_src
2018-08-23 11:53:23 -04:00
main.cc
2018-11-10 23:29:12 -05:00
texthook.cc
2019-06-02 02:09:17 -04:00
hookfinder.cc
engine/match.cc
2018-12-21 10:10:51 -05:00
engine/match64.cc
engine/native/pchooks.cc
2018-08-23 11:53:23 -04:00
util/ithsys/ithsys.cc
2019-01-08 21:52:28 -05:00
util/util.cc
2018-08-07 15:44:13 -04:00
)
else()
2019-03-13 11:54:19 -04:00
set(texthook_src
2018-08-23 11:53:23 -04:00
main.cc
2018-11-10 23:29:12 -05:00
texthook.cc
2019-06-02 02:09:17 -04:00
hookfinder.cc
2018-08-23 11:53:23 -04:00
engine/engine.cc
engine/match.cc
engine/match32.cc
2018-09-17 21:40:54 -04:00
engine/native/pchooks.cc
2018-08-23 11:53:23 -04:00
util/util.cc
util/ithsys/ithsys.cc
util/disasm/disasm.cc
util/memdbg/memsearch.cc
)
endif()
2019-06-10 13:58:19 -04:00
add_library(texthook MODULE ${texthook_src})
2020-04-18 19:04:07 -06:00
target_precompile_headers(texthook REUSE_FROM pch)
2019-06-02 02:09:17 -04:00
target_link_libraries(texthook minhook)