Update of /cvsroot/super-tux/supertux/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29597/lib
Added Files:
Jamfile
Log Message:
added jam build system, please try it out - the advantage would be that it already supports all the stuff we need
--- NEW FILE: Jamfile ---
SubDir TOP lib ;
Library supertuxlib :
[ Wildcard app : *.cpp *.h ]
[ Wildcard audio : *.cpp *.h ]
[ Wildcard gui : *.cpp *.h ]
[ Wildcard math : *.cpp *.h ]
[ Wildcard special : *.cpp *.h ]
[ Wildcard utils : *.cpp *.h ]
[ Wildcard video : *.cpp *.h ]
;
ExternalLibs supertuxlib : SDL SDLMIXER SDLIMAGE GL ;
C++Flags supertuxlib : -DDATA_PREFIX='\"$(appdatadir)\"' -DLOCALEDIR='\"$(datadir)/locale\"' : export ;
Help supertuxlib : "Build supertux library" ;
|