blob: 5026d9c3f7c123d73e42f12a9cdab69ab048e6cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-03T19:45:44
#
#-------------------------------------------------
QT -= core gui
TARGET = binaryninjaapi
TEMPLATE = lib
CONFIG += staticlib
CONFIG += c++11
SOURCES += \
databuffer.cpp \
filemetadata.cpp \
fileaccessor.cpp \
binaryview.cpp \
binaryviewtype.cpp \
binaryreader.cpp \
binarywriter.cpp \
transform.cpp \
architecture.cpp \
basicblock.cpp \
function.cpp \
functiongraph.cpp \
functiongraphblock.cpp \
log.cpp
HEADERS += binaryninjaapi.h
unix {
target.path = /usr/lib
INSTALLS += target
}
INCLUDEPATH += $$PWD/../core
DEPENDPATH += $$PWD/../core
|