summaryrefslogtreecommitdiff
path: root/api.pro
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2015-02-03 23:38:12 -0500
committerRusty Wagner <rusty@vector35.com>2015-02-03 23:38:12 -0500
commitc19d03195a7f277acdaf5e5e731415639c0be5bd (patch)
tree8b90b3af2a49df18f5f65cc53b9c434de8eef063 /api.pro
Refactor to allow for plugins and language bindings
Diffstat (limited to 'api.pro')
-rw-r--r--api.pro22
1 files changed, 22 insertions, 0 deletions
diff --git a/api.pro b/api.pro
new file mode 100644
index 00000000..6e20687d
--- /dev/null
+++ b/api.pro
@@ -0,0 +1,22 @@
+#-------------------------------------------------
+#
+# 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