From c19d03195a7f277acdaf5e5e731415639c0be5bd Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 3 Feb 2015 23:38:12 -0500 Subject: Refactor to allow for plugins and language bindings --- api.pro | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 api.pro (limited to 'api.pro') 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 -- cgit v1.3.1