-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhueApp.pro
60 lines (51 loc) · 1.18 KB
/
hueApp.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#-------------------------------------------------
#
# Project created by QtCreator 2017-12-15T10:29:50
#
#-------------------------------------------------
QT += core gui
QT += network
QT_MAJOR_VERSION = 5
QT_MINOR_VERSION = 4
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
RESOURCES = icons.qrc
TARGET = hueApp
TEMPLATE = app
CONFIG += c++14
QMAKE_CXXFLAGS += -std=c++14
SOURCES += main.cpp\
mainwindow.cpp \
api.cpp \
lightlistmodel.cpp \
light.cpp \
lightsform.cpp \
formsinglelight.cpp \
settings.cpp \
setting.cpp \
group.cpp \
grouplistmodel.cpp \
mygroupsform.cpp \
mygrouplistmodel.cpp \
huestate.cpp \
costumelightlistmodel.cpp
HEADERS += mainwindow.h \
api.h \
lightlistmodel.h \
light.h \
lightsform.h \
formsinglelight.h \
settings.h \
setting.h \
group.h \
grouplistmodel.h \
mygroupsform.h \
mygrouplistmodel.h \
huestate.h \
costumelightlistmodel.h
FORMS += mainwindow.ui \
lightsform.ui \
formsinglelight.ui \
settings.ui \
mygroupsform.ui
RESOURCES += \
icons.qrc