-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpace_Invaders_Game.pro
More file actions
32 lines (27 loc) · 882 Bytes
/
Space_Invaders_Game.pro
File metadata and controls
32 lines (27 loc) · 882 Bytes
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
TEMPLATE = app
CONFIG += console c++17
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
animation.cpp \
bullet.cpp \
destroyer.cpp \
enemy.cpp \
main.cpp \
player.cpp \
ship.cpp
# ----------CHANGE THE PATH TO SFML LIBRARY ACCORDINGLY-----------------------
INCLUDEPATH += "C:/Users/George/Desktop/Automatic Control and Robotics/Semester 2/Information Engineering/SFML-2.5.1/include"
LIBS += -L"C:/Users/George/Desktop/Automatic Control and Robotics/Semester 2/Information Engineering/SFML-2.5.1/lib"
CONFIG(debug, debug|release){
LIBS += -lsfml-audio-d -lsfml-graphics-d -lsfml-network-d -lsfml-system-d -lsfml-window-d
} else {
LIBS += -lsfml-audio -lsfml-graphics -lsfml-network -lsfml-system -lsfml-window
}
HEADERS += \
animation.h \
bullet.h \
destroyer.h \
enemy.h \
player.h \
ship.h