-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThermostat.pro
44 lines (34 loc) · 921 Bytes
/
Thermostat.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
42
43
44
#-------------------------------------------------
#
# Project created by QtCreator 2015-05-21T10:18:35
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Thermostat
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
device.cpp \
devicecontroller.cpp \
qextserialport.cpp \
qextserialenumerator.cpp \
qextserialport_unix.cpp \
qextserialenumerator_osx.cpp \
realdevice.cpp
HEADERS += mainwindow.h \
device.h \
devicecontroller.h \
qextserialport.h \
qextserialenumerator.h \
qextserialport_global.h \
qextserialport_p.h \
qextserialenumerator_p.h \
realdevice.h
FORMS += mainwindow.ui \
device.ui
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
RESOURCES += \
resources.qrc
macx:LIBS += -framework IOKit -framework CoreFoundation