-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlanes.pro
58 lines (45 loc) · 1.08 KB
/
Planes.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-17T11:14:32
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = planes
TEMPLATE = app
CONFIG += c++11
CONFIG += release
SOURCES += src/main.cpp \
src/Bullet.cpp \
src/Enemies.cpp \
src/Enemy.cpp \
src/Game.cpp \
src/Health.cpp \
src/Notifier.cpp \
src/Player.cpp \
src/Score.cpp
HEADERS += \
include/Bullet.h \
include/Enemies.h \
include/Enemy.h \
include/Game.h \
include/Health.h \
include/Notification.h \
include/Notifier.h \
include/Player.h \
include/Score.h \
include/Subscriber.h
INCLUDEPATH += include/
DISTFILES +=
RESOURCES += \
resources.qrc
debug:DESTDIR = debug
debug:OBJECTS_DIR = debug/.obj
debug:MOC_DIR = debug/.moc
debug:RCC_DIR = debug/.rcc
debug:UI_DIR = debug/.ui
release:DESTDIR = release
release:OBJECTS_DIR = release/.obj
release:MOC_DIR = release/.moc
release:RCC_DIR = release/.rcc
release:UI_DIR = release/.ui