Update of /cvsroot/super-tux/supertux
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16876
Modified Files:
SConstruct
Log Message:
Removed the first line (#!/usr/bin/python) -- SConstructs can't be executed like that....
Played around with the script.... it should now produce a shared library instead of a static one.
Index: SConstruct
===================================================================
RCS file: /cvsroot/super-tux/supertux/SConstruct,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SConstruct 16 Nov 2004 10:01:30 -0000 1.2
+++ SConstruct 16 Nov 2004 10:24:49 -0000 1.3
@@ -1,4 +1,3 @@
-#!/usr/bin/scons -Q
#
# A simple SConstruct file.
# See http://www.scons.org/ for more information about what SCons is and how it
@@ -72,7 +71,7 @@
'src/worldmap.cpp'
]
-Library(
+SharedLibrary(
target="lib/supertux",
source=libsupertux_src,
CPPPATH=SDL_INCLUDE_PATH
|