-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSnowFlakeSceneSimulator.pro
97 lines (88 loc) · 2.83 KB
/
SnowFlakeSceneSimulator.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#
# (c)2019 by Lucky Resistor. See LICENSE for details.
# https://luckyresistor.me
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
CONFIG += link_prl
SOURCES += \
SnowFlake.cpp \
main.cpp \
MainWindow.cpp
HEADERS += \
MainWindow.hpp \
SnowFlake.hpp
SOURCES += \
Firmware/Communication.cpp \
Firmware/Fixed16.cpp \
Firmware/Frame.cpp \
Firmware/Helper.cpp \
Firmware/LedMaps.cpp \
Firmware/PixelCanvas.cpp \
Firmware/PixelValue.cpp \
Firmware/Scene.cpp \
Firmware/SceneData.cpp \
Firmware/ValueArrays.cpp \
Firmware/scene/Black.cpp \
Firmware/scene/Circles.cpp \
Firmware/scene/IceSparkle.cpp \
Firmware/scene/Rain.cpp \
Firmware/scene/SimpleDiagonal.cpp \
Firmware/scene/SimpleFlash.cpp \
Firmware/scene/SimpleRandomFlicker.cpp \
Firmware/scene/SimpleRandomParticle.cpp \
Firmware/scene/SimpleRotation.cpp \
Firmware/scene/SimpleShift.cpp \
Firmware/scene/SkyWithStars.cpp \
Firmware/scene/User.cpp \
Firmware/scene/Waves.cpp
HEADERS += \
Firmware/Communication.hpp \
Firmware/Configuration.hpp \
Firmware/Display.hpp \
Firmware/Fixed16.hpp \
Firmware/Frame.hpp \
Firmware/Helper.hpp \
Firmware/InterpolatingArray.hpp \
Firmware/LedMaps.hpp \
Firmware/PixelCanvas.hpp \
Firmware/PixelParticleMap.hpp \
Firmware/PixelPosition.hpp \
Firmware/PixelValue.hpp \
Firmware/RandomFrameCounters.hpp \
Firmware/Scene.hpp \
Firmware/SceneData.hpp \
Firmware/ShiftingMap.hpp \
Firmware/ValueArrays.hpp \
Firmware/scene/Black.hpp \
Firmware/scene/Circles.hpp \
Firmware/scene/IceSparkle.hpp \
Firmware/scene/Rain.hpp \
Firmware/scene/SimpleDiagonal.hpp \
Firmware/scene/SimpleFlash.hpp \
Firmware/scene/SimpleRandomFlicker.hpp \
Firmware/scene/SimpleRandomParticle.hpp \
Firmware/scene/SimpleRotation.hpp \
Firmware/scene/SimpleShift.hpp \
Firmware/scene/SkyWithStars.hpp \
Firmware/scene/User.hpp \
Firmware/scene/Waves.hpp
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
Data/data.qrc