aboutsummaryrefslogtreecommitdiff
path: root/sample-plugin/sample-plugin.pro
blob: 5ee7c48dcf3a394d23d27c1063e11f3c8ce439b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}