-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstate_machine_example.pro
More file actions
executable file
·50 lines (43 loc) · 1.43 KB
/
state_machine_example.pro
File metadata and controls
executable file
·50 lines (43 loc) · 1.43 KB
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
# Created by and for Qt Creator This file was created for editing the project sources only.
# You may attempt to use it for building too, by modifying this file here.
TARGET = Main
HEADERS = \
$$PWD/examples/CentrifugeTest.h \
$$PWD/examples/Motor.h \
$$PWD/examples/MotorNM.h \
$$PWD/examples/Player.h \
$$PWD/examples/SelfTest.h \
$$PWD/inc/allocator.h \
$$PWD/inc/DataTypes.h \
$$PWD/inc/Fault.h \
$$PWD/inc/StateMachine.h \
$$PWD/inc/stdafx.h \
$$PWD/inc/targetver.h \
$$PWD/inc/xallocator.h \
examples/mybaseclass.h \
examples/myderivedclass.h
SOURCES = \
$$PWD/examples/CentrifugeTest.cpp \
$$PWD/examples/Main.cpp \
$$PWD/examples/Motor.cpp \
$$PWD/examples/MotorNM.cpp \
$$PWD/examples/Player.cpp \
$$PWD/examples/SelfTest.cpp \
$$PWD/src/allocator.cpp \
$$PWD/src/Fault.cpp \
$$PWD/src/StateMachine.cpp \
$$PWD/src/stdafx.cpp \
$$PWD/src/xallocator.cpp \
examples/mybaseclass.cpp \
examples/myderivedclass.cpp
INCLUDEPATH = \
$$PWD/examples \
$$PWD/inc
#DEFINES = EXTERNAL_EVENT_NO_HEAP_DATA
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += c++11 console
CONFIG -= app_bundle