forked from dvvrd/car-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpwm-ctrl.pro
49 lines (39 loc) · 1.01 KB
/
pwm-ctrl.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
TEMPLATE = app
CONFIG += debug_and_release \
warn_on \
copy_dir_files
debug:CONFIG += console
QT += network
contains($$[QT_VERSION_MAJOR],5) {
QT += widgets
}
TARGET = copter-pwm-ctrl-qt
SOURCES += \
CopterMotor.cpp \
CopterCtrl.cpp \
Main.cpp \
commands/AbstractCommand.cpp \
commands/CommandFactory.cpp \
commands/MotorCommand.cpp \
commands/BeepCommand.cpp \
commands/SensorCommand.cpp \
commands/DistanceSensorCommand.cpp \
commands/LightSensorCommand.cpp
HEADERS += \
CopterMotor.hpp \
CopterCtrl.hpp \
commands/CommandFactory.h \
commands/MotorCommand.h \
commands/BeepCommand.h \
commands/SensorCommand.h \
commands/DistanceSensorCommand.h \
commands/LightSensorCommand.h \
commands/CommandDefinitions.h \
commands/AbstractCommand.h
FORMS +=
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS_WARN_ON = -Wno-reorder
unix {
target.path = $$[INSTALL_ROOT]/bin
INSTALLS += target
}