-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmoos.pro
More file actions
51 lines (42 loc) · 1.47 KB
/
moos.pro
File metadata and controls
51 lines (42 loc) · 1.47 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
51
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += main.cpp \
graphic/ui/moos_graphic_button.cpp \
graphic/ui/moos_graphic_item.cpp \
base/core/moos_looper.cpp \
base/appframework/moos_application.cpp \
graphic/ui/moos_point.cpp \
graphic/ui/moos_size.cpp \
graphic/engine/moos_paintengine.cpp \
input/moos_eventhub.cpp \
input/moos_inputmanager.cpp
INCLUDEPATH += base/core/include \
graphic/ui/include \
base/appframework/include \
graphic/engine/include \
input/include
LIBS += -lpthread -lGL -lglut
DEFINES += _GLIBCXX_USE_NANOSLEEP
HEADERS += \
graphic/ui/include/moos_graphic_button.h \
graphic/ui/include/moos_graphic_item.h \
base/core/include/moos_defines.h \
base/core/include/moos_looper.h \
base/core/include/moos_object.h \
base/core/include/moos_signal.h \
base/core/include/moos_task.h \
base/core/include/moos_task_policy.h \
base/core/include/moos_task_queue.h \
base/core/include/moos_thread.h \
base/appframework/include/moos_application.h \
graphic/ui/include/moos_point.h \
graphic/ui/include/moos_size.h \
graphic/engine/include/moos_paintengine.h \
graphic/engine/include/moos_painter.h \
graphic/engine/include/moos_paintdevice.h \
base/core/include/moos_logger.h \
base/core/include/moos_tasktype.h \
input/include/moos_eventhub.h \
input/include/moos_inputmanager.h