diff options
| author | John Hurlman <jhurliman@jhurliman.org> | 2016-12-06 02:14:56 +0000 |
|---|---|---|
| committer | John Hurlman <jhurliman@jhurliman.org> | 2016-12-06 02:14:56 +0000 |
| commit | 164c7a680697be72d7f42af28b89012e5c6dd53b (patch) | |
| tree | 28889a97b2156945506e602368bfbefd3fb396aa /CMakeLists.txt | |
| parent | ed994792d2735b701f5284fc8e3e1444dfc3c650 (diff) | |
CMake files for binaryninjaapi and breakpoint
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..9b835d75 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,38 @@ +cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) + +add_library(binaryninjaapi STATIC + architecture.cpp + backgroundtask.cpp + basicblock.cpp + binaryninjaapi.cpp + binaryreader.cpp + binaryview.cpp + binaryviewtype.cpp + binarywriter.cpp + callingconvention.cpp + databuffer.cpp + demangle.cpp + fileaccessor.cpp + filemetadata.cpp + function.cpp + functiongraph.cpp + functiongraphblock.cpp + functionrecognizer.cpp + interaction.cpp + jsoncpp.cpp + log.cpp + lowlevelil.cpp + mainthread.cpp + platform.cpp + plugin.cpp + scriptingprovider.cpp + tempfile.cpp + transform.cpp + type.cpp + update.cpp + ) + +set_target_properties(binaryninjaapi PROPERTIES + CXX_STANDARD 11 + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin + ) |
