Statistics
| Branch: | Revision:

gazetk / GazeTkHub / Plugins / DeviceEyetrackerDummy / DeviceEyetrackerDummy.pro @ 2eb54f9d

History | View | Annotate | Download (695 Bytes)

1 5444009a Thies Pfeiffer
#-------------------------------------------------
2
#
3
# Project created by QtCreator 2015-10-27T14:34:48
4
#
5
#-------------------------------------------------
6 2eb54f9d Thies Pfeiffer
# Check if the config file exists
7
! include( ../../common.pri ) {
8
    error( "Couldn't find the common.pri file!" )
9
}
10 5444009a Thies Pfeiffer
11
QT       += core gui
12
13
TARGET = DeviceEyetrackerDummy
14
TEMPLATE = lib
15
CONFIG += plugin
16
17 2eb54f9d Thies Pfeiffer
#DESTDIR = $$[QT_INSTALL_PLUGINS]/generic
18
DESTDIR = $${DESTDIR}/bin/plugins
19 5444009a Thies Pfeiffer
20
SOURCES += deviceeyetrackerdummy.cpp
21
22
HEADERS += deviceeyetrackerdummy.h
23
DISTFILES += DeviceEyetrackerDummy.json
24
25 2eb54f9d Thies Pfeiffer
INCLUDEPATH += ../../GazeTkLib/include
26
27
DeviceEyetrackerDummy.depends = GazeTkLib
28
29 5444009a Thies Pfeiffer
unix {
30
    target.path = /usr/lib
31
    INSTALLS += target
32
}