diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-03-24 11:20:39 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-03-24 11:20:39 -0400 |
| commit | 435e937c9705bc71cf1e7da1e08b23345a131360 (patch) | |
| tree | 5a4d729acb0404c4c4059f0c7e8aa7c22136b649 /CMakeLists.txt | |
| parent | 1e8e975ed8100c7a6186e8b27833a067ceaf05be (diff) | |
| parent | ddaf7506e1802cfd4f9c78bcfb14deb0180b04d8 (diff) | |
Merge branch 'dev' into staging
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..a635c9f2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,44 @@ +cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) + +project(binaryninja-api) + +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 + json/jsoncpp.cpp + log.cpp + lowlevelil.cpp + mainthread.cpp + platform.cpp + plugin.cpp + scriptingprovider.cpp + tempfile.cpp + transform.cpp + type.cpp + update.cpp + ) + +set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin) + +include_directories(${PROJECT_SOURCE_DIR}) + +set_target_properties(binaryninjaapi PROPERTIES + CXX_STANDARD 11 + ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin + ) |
