summary refs log tree commit diff
path: root/src/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'src/SConstruct')
-rw-r--r--src/SConstruct10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/SConstruct b/src/SConstruct
new file mode 100644
index 0000000..70fa779
--- /dev/null
+++ b/src/SConstruct
@@ -0,0 +1,10 @@
+Program(
+	'blackshades',
+	Split('Camera.cpp Decals.cpp Fog.cpp Frustum.cpp  GameDraw.cpp GameInitDispose.cpp GameLoop.cpp GameTick.cpp ' + 
+	'Globals.cpp MacInput.cpp Main.cpp Maths.cpp Models.cpp Person.cpp Quaternions.cpp Serialize.cpp Skeleton.cpp ' +
+	'Sprites.cpp Support.cpp Text.cpp Timer.cpp Textures.cpp'),
+	CPPDEFS=['GNUSOURCE=1'],
+	CPPPATH=['.'],
+	CPPFLAGS=['-O2', '-Wall' ,'-g'],
+	LIBS=['GL', 'GLU', 'openal', 'alut', 'SDL', 'SDL_image', 'vorbisfile', 'vorbis']
+)