summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-08-31 21:41:25 -0400
committerRusty Wagner <rusty@vector35.com>2017-08-31 21:41:25 -0400
commit7cbb40a71ffb2583862191b7999e436807f9a0e8 (patch)
tree25846f8d0e811b16b28291aeaf6359bee51e28c4 /CMakeLists.txt
parent980e2f090fb47f7f71a46b03e8c636819f3214ec (diff)
parent0b30396eb319e89e4f69d9cbac12fc3d4b453f53 (diff)
Merge branch 'dev'
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt34
1 files changed, 3 insertions, 31 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a635c9f2..85009adc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,37 +2,9 @@ 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
- )
+file( GLOB SRCS *.cpp json/json.h json/jsoncpp.cpp json/json-forwards.h)
+
+add_library(binaryninjaapi STATIC ${SRCS})
set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)