summaryrefslogtreecommitdiff
path: root/api.pro
blob: 017b4d556af55b496035a01db38f62f2464fc7d7 (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
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-03T19:45:44
#
#-------------------------------------------------

QT       -= core gui

TARGET = binaryninjaapi
TEMPLATE = lib
CONFIG += staticlib

SOURCES += binaryninjaapi.cpp

HEADERS += binaryninjaapi.h
unix {
    target.path = /usr/lib
    INSTALLS += target
}

INCLUDEPATH += $$PWD/../core
DEPENDPATH += $$PWD/../core

!win32 {
	QMAKE_CXXFLAGS += -std=c++11
}