forked from jonpalmisc/ObjectiveNinja
-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakeLists.txt
50 lines (42 loc) · 1.42 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
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
project(workflow_objc)
if((NOT BN_API_PATH) AND (NOT BN_INTERNAL_BUILD))
set(BN_API_PATH $ENV{BN_API_PATH})
if(NOT BN_API_PATH)
message(FATAL_ERROR "Provide path to Binary Ninja API source in BN_API_PATH")
endif()
endif()
if(NOT BN_INTERNAL_BUILD)
set(HEADLESS ON CACHE BOOL "")
add_subdirectory(${BN_API_PATH} ${PROJECT_BINARY_DIR}/api)
endif()
# Binary Ninja plugin ----------------------------------------------------------
set(PLUGIN_SOURCE
ArchitectureHooks.cpp
ArchitectureHooks.h
DataRenderers.h
DataRenderers.cpp
GlobalState.h
GlobalState.cpp
MessageHandler.cpp
MessageHandler.h
Plugin.cpp
Workflow.h
Workflow.cpp)
add_library(workflow_objc SHARED ${PLUGIN_SOURCE})
target_link_libraries(workflow_objc binaryninjaapi)
target_compile_features(workflow_objc PRIVATE cxx_std_17 c_std_99)
# Library targets linking against the Binary Ninja API need to be compiled with
# position-independent code on Linux.
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
target_compile_options(workflow_objc PRIVATE "-fPIC")
endif()
# Configure plugin output directory for internal builds, otherwise configure
# plugin installation for public builds.
if(BN_INTERNAL_BUILD)
set_target_properties(workflow_objc PROPERTIES
LIBRARY_OUTPUT_DIRECTORY ${BN_CORE_PLUGIN_DIR}
RUNTIME_OUTPUT_DIRECTORY ${BN_CORE_PLUGIN_DIR})
else()
bn_install_plugin(workflow_objc)
endif()