blob: 449c53d088f128221f5b94b50fdea5acd037a616 (
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
|
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-03T19:45:44
#
#-------------------------------------------------
QT -= core gui
TARGET = binaryninjaapi
TEMPLATE = lib
CONFIG += staticlib
SOURCES += \
databuffer.cpp \
filemetadata.cpp \
fileaccessor.cpp \
binaryview.cpp \
binaryviewtype.cpp \
binaryreader.cpp \
binarywriter.cpp \
transform.cpp
HEADERS += binaryninjaapi.h
unix {
target.path = /usr/lib
INSTALLS += target
}
INCLUDEPATH += $$PWD/../core
DEPENDPATH += $$PWD/../core
!win32 {
QMAKE_CXXFLAGS += -std=c++11
}
|