-
Notifications
You must be signed in to change notification settings - Fork 4
/
GigaPi.pro
41 lines (32 loc) · 809 Bytes
/
GigaPi.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#-------------------------------------------------
#
# Project created by QtCreator 2013-02-26T20:44:59
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = GigaPi
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
settings.cpp \
adjustments.cpp \
progress.cpp \
numberedit.cpp \
editbox.cpp
HEADERS += mainwindow.h \
settings.h \
adjustments.h \
progress.h \
numberedit.h \
editbox.h
FORMS += \
settings.ui \
mainwindow.ui \
adjustments.ui \
progress.ui \
numberedit.ui
symbian: LIBS += -lwiringPi
else:unix|win32: LIBS += -L$$PWD/../wiringPi/wiringPi/ -lwiringPi
INCLUDEPATH += $$PWD/../wiringPi/wiringPi
DEPENDPATH += $$PWD/../wiringPi/wiringPi