* add llil cpp example * added image * fix string stream under linux * fix path under linux * Update build notes for linux * analysis sync | mac os path | lill* usage change * added path note and removed comment about mac path * use UpdateAnalysisAndWait()
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt38
1 files changed, 3 insertions, 35 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 344ec39b..85009adc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,41 +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
- mediumlevelil.cpp
- metadata.cpp
- platform.cpp
- plugin.cpp
- pluginmanager.cpp
- scriptingprovider.cpp
- settings.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)