generated from x64dbg/PluginTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
105 lines (80 loc) · 2.73 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# This file is automatically generated from cmake.toml - DO NOT EDIT
# See https://github.com/build-cpp/cmkr for more information
cmake_minimum_required(VERSION 3.15)
# Regenerate CMakeLists.txt automatically in the root project
set(CMKR_ROOT_PROJECT OFF)
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
set(CMKR_ROOT_PROJECT ON)
# Bootstrap cmkr
include("cmake/cmkr.cmake" OPTIONAL RESULT_VARIABLE CMKR_INCLUDE_RESULT)
if(CMKR_INCLUDE_RESULT)
cmkr()
endif()
# Enable folder support
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif()
# Create a configure-time dependency on cmake.toml to improve IDE support
if(CMKR_ROOT_PROJECT)
configure_file(cmake.toml cmake.toml COPYONLY)
endif()
# Set up a more familiar Visual Studio configuration
# Override these options with -DCMAKE_OPTION=Value
#
# See: https://cmake.org/cmake/help/latest/command/set.html#set-cache-entry
set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "")
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG:FULL /INCREMENTAL:NO" CACHE STRING "")
set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "/DEBUG:FULL /INCREMENTAL:NO" CACHE STRING "")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "")
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>" CACHE STRING "")
project(x64dbg_rc)
include("cmake/CPM.cmake")
include("cmake/x64dbg.cmake")
# Target x64dbg_rc
set(CMKR_TARGET x64dbg_rc)
set(x64dbg_rc_SOURCES "")
list(APPEND x64dbg_rc_SOURCES
"src/plugin.cpp"
"src/pluginmain.cpp"
"src/plugin.h"
"src/pluginmain.h"
"include/x64dbg_rc/x64dbg_rc.h"
)
list(APPEND x64dbg_rc_SOURCES
cmake.toml
)
set(CMKR_SOURCES ${x64dbg_rc_SOURCES})
add_library(x64dbg_rc SHARED)
if(x64dbg_rc_SOURCES)
target_sources(x64dbg_rc PRIVATE ${x64dbg_rc_SOURCES})
endif()
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${x64dbg_rc_SOURCES})
target_include_directories(x64dbg_rc PUBLIC
"include/"
)
x64dbg_plugin(${CMKR_TARGET})
unset(CMKR_TARGET)
unset(CMKR_SOURCES)
# Target x64dbg_rc_example
set(CMKR_TARGET x64dbg_rc_example)
set(x64dbg_rc_example_SOURCES "")
list(APPEND x64dbg_rc_example_SOURCES
"example/main.cpp"
)
list(APPEND x64dbg_rc_example_SOURCES
cmake.toml
)
set(CMKR_SOURCES ${x64dbg_rc_example_SOURCES})
add_executable(x64dbg_rc_example)
if(x64dbg_rc_example_SOURCES)
target_sources(x64dbg_rc_example PRIVATE ${x64dbg_rc_example_SOURCES})
endif()
get_directory_property(CMKR_VS_STARTUP_PROJECT DIRECTORY ${PROJECT_SOURCE_DIR} DEFINITION VS_STARTUP_PROJECT)
if(NOT CMKR_VS_STARTUP_PROJECT)
set_property(DIRECTORY ${PROJECT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT x64dbg_rc_example)
endif()
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${x64dbg_rc_example_SOURCES})
target_include_directories(x64dbg_rc_example PRIVATE
"include/"
)
unset(CMKR_TARGET)
unset(CMKR_SOURCES)