-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathItemScene.pro
42 lines (32 loc) · 904 Bytes
/
ItemScene.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-15T18:11:37
#
#-------------------------------------------------
QT += core gui widgets
TARGET = ItemScene
TEMPLATE = app
CONFIG += c++11
DESTDIR = $$PWD/bin
CONFIG(release, debug|release):message(Release build!) #will print
CONFIG(debug, debug|release):message(Debug build!) #no print
!macx: {
QMAKE_CXXFLAGS += -ffloat-store
}
SOURCES += \
main.cpp \
itemscene.cpp \
item_scene/pge_edit_scene.cpp \
item_scene/pge_edit_scene_item.cpp \
item_scene/pge_quad_tree.cpp \
key_dropper.cpp
HEADERS += \
itemscene.h \
item_scene/LooseQuadtree.h \
item_scene/LooseQuadtree-impl.h \
item_scene/pge_edit_scene.h \
item_scene/pge_edit_scene_item.h \
item_scene/pge_quad_tree.h \
key_dropper.h \
item_scene/pge_rect.h
FORMS += itemscene.ui