-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSS.pro
More file actions
73 lines (63 loc) · 1.67 KB
/
SS.pro
File metadata and controls
73 lines (63 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
QT += opengl
QT -= core
QT -= gui
CONFIG += console
CONFIG += c++11
CONFIG -= qt
CONFIG -= app_bundle
TARGET = super_stardust
DESTDIR = .
cache()
SOURCES += src/Asteroids.cpp \
src/Audio.cpp \
src/Camera.cpp \
src/LoadOBJ.cpp \
src/main.cpp \
src/Particles.cpp \
src/Planet.cpp \
src/Player.cpp \
src/Projectile.cpp \
src/Sdl_gl.cpp \
src/TextureOBJ.cpp \
src/World.cpp \
src/NCCA/GLFunctions.cpp \
src/NCCA/Mat4.cpp \
src/NCCA/Vec4.cpp
HEADERS += include/Asteroids.h \
include/Audio.h \
include/Camera.h \
include/Defs.h \
include/frames.h \
include/Icosahedron.h \
include/LoadOBJ.h \
include/Particles.h \
include/Planet.h \
include/Player.h \
include/Projectile.h \
include/Sdl_gl.h \
include/TextureOBJ.h \
include/World.h \
include/NCCA/GLFunctions.h \
include/NCCA/Mat4.h \
include/NCCA/Vec4.h
OTHER_FILES += textures/* \
models/* \
sounds/* \
Resources.txt
INCLUDEPATH += ./include
INCLUDEPATH += /usr/local/include
QMAKE_CXXFLAGS += $$system(sdl2-config --cflags)
QMAKE_CXXFLAGS += -std=c++0x
LIBS += $$system(sdl2-config --libs)
LIBS += -L/usr/local/lib -lSDL2_image -lSDL2_mixer -lvorbis -logg
macx:LIBS += -framework OpenGL
macx:LIBS += -framework glut
macx:DEFINES +=DARWIN
linux-* {
DEFINES += LINUX
LIBS+= -lGLEW -lglut -lGLU
}
linux-clang {
DEFINES += LINUX
LIBS+= -lGLEW -lglut -lGLU
}