gazetk / GazeTkHub / Hub / Hub.pro @ 2eb54f9d
History | View | Annotate | Download (480 Bytes)
1 |
# Check if the config file exists |
---|---|
2 |
! include( ../common.pri ) { |
3 |
error( "Couldn't find the common.pri file!" ) |
4 |
} |
5 |
|
6 |
TEMPLATE = app |
7 |
CONFIG += GazeTkLib |
8 |
CONFIG += link_prl |
9 |
|
10 |
QT += core gui widgets |
11 |
|
12 |
INCLUDEPATH += ../GazeTkLib/include |
13 |
|
14 |
SOURCES += src/main.cpp \ |
15 |
src/mainwindow.cpp |
16 |
|
17 |
LIBS += -lGazeTkLib |
18 |
DESTDIR = $${DESTDIR}/bin |
19 |
|
20 |
# Will build the final executable in the main project directory. |
21 |
TARGET = GazeTkHub |
22 |
FORMS += \ |
23 |
src/mainwindow.ui |
24 |
HEADERS += \ |
25 |
src/mainwindow.h |