aboutsummaryrefslogtreecommitdiff
path: root/sample-plugin/sample-plugin.pro
diff options
context:
space:
mode:
Diffstat (limited to 'sample-plugin/sample-plugin.pro')
-rw-r--r--sample-plugin/sample-plugin.pro23
1 files changed, 23 insertions, 0 deletions
diff --git a/sample-plugin/sample-plugin.pro b/sample-plugin/sample-plugin.pro
new file mode 100644
index 0000000..5ee7c48
--- /dev/null
+++ b/sample-plugin/sample-plugin.pro
@@ -0,0 +1,23 @@
+#-------------------------------------------------
+#
+# Project created by QtCreator 2016-05-19T09:25:32
+#
+#-------------------------------------------------
+
+QT -= core gui
+
+CONFIG += c++11
+
+TARGET = sample-plugin
+TEMPLATE = lib
+
+DEFINES += SAMPLEPLUGIN_LIBRARY
+
+SOURCES += sampleplugin.cpp
+
+HEADERS += sampleplugin.hpp
+
+unix {
+ target.path = /usr/lib
+ INSTALLS += target
+}