diff options
| author | Brian Potchik <brian@vector35.com> | 2022-06-09 13:16:50 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2022-06-09 13:16:50 -0400 |
| commit | 3556fc9c0cf451739df838ad78b5be52a2d482f3 (patch) | |
| tree | 8bf164b850ab1b6a088893fd6a50aa736fa99791 /examples/workflows/objectivec/CMakeLists.txt | |
| parent | ca75090accb03cbcd07f2a65686f1efcb5416c1f (diff) | |
Remove built-in workflow docs and objectivec example.
Diffstat (limited to 'examples/workflows/objectivec/CMakeLists.txt')
| -rw-r--r-- | examples/workflows/objectivec/CMakeLists.txt | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/workflows/objectivec/CMakeLists.txt b/examples/workflows/objectivec/CMakeLists.txt deleted file mode 100644 index c2def99d..00000000 --- a/examples/workflows/objectivec/CMakeLists.txt +++ /dev/null @@ -1,40 +0,0 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) - -project(workflow_objectivec) - -file(GLOB SOURCES - *.cpp - *.c - *.h) - -add_library(workflow_objectivec SHARED ${SOURCES}) - -if(NOT BN_API_BUILD_EXAMPLES AND NOT BN_INTERNAL_BUILD) - # Out-of-tree build - find_path( - BN_API_PATH - NAMES binaryninjaapi.h - HINTS ../../.. binaryninjaapi $ENV{BN_API_PATH} - REQUIRED - ) - add_subdirectory(${BN_API_PATH} api) -endif() - -target_link_libraries(workflow_objectivec binaryninjaapi) - -set_target_properties(workflow_objectivec PROPERTIES - CXX_STANDARD 17 - CXX_VISIBILITY_PRESET hidden - CXX_STANDARD_REQUIRED ON - C_STANDARD 99 - C_STANDARD_REQUIRED ON - C_VISIBILITY_PRESET hidden - VISIBILITY_INLINES_HIDDEN ON - POSITION_INDEPENDENT_CODE ON) - -if(BN_INTERNAL_BUILD) - plugin_rpath(workflow_objectivec) - set_target_properties(workflow_objectivec PROPERTIES - LIBRARY_OUTPUT_DIRECTORY ${BN_CORE_PLUGIN_DIR} - RUNTIME_OUTPUT_DIRECTORY ${BN_CORE_PLUGIN_DIR}) -endif() |
