X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2FJamfile;h=2fc35cd2f12c4e972c6bc6a7610c73c1819016b8;hb=3e86b3d0c8c9ed1137e8716fcecbcd0ca67bea7b;hp=b1ca0c4afae574035a4edaef699db33091261529;hpb=112f01454123c94f5627200c6819b219026f0af0;p=supertux.git diff --git a/src/Jamfile b/src/Jamfile index b1ca0c4af..2fc35cd2f 100644 --- a/src/Jamfile +++ b/src/Jamfile @@ -3,11 +3,12 @@ SubDir TOP src ; SubInclude TOP src squirrel ; SubInclude TOP src scripting ; -sources = +sources = [ Wildcard *.cpp *.hpp ] [ Wildcard audio : *.cpp *.hpp ] [ Wildcard audio/newapi : *.cpp *.hpp ] [ Wildcard badguy : *.cpp *.hpp ] + [ Wildcard binreloc : *.c *.h ] [ Wildcard control : *.cpp *.hpp ] [ Wildcard gui : *.cpp *.hpp ] [ Wildcard lisp : *.cpp *.hpp ] @@ -19,13 +20,16 @@ sources = [ Wildcard trigger : *.cpp *.hpp ] [ Wildcard video : *.cpp *.hpp ] [ Wildcard worldmap : *.cpp *.hpp ] + [ Wildcard obstack : *.c *.h *.hpp ] ; TRANSLATABLE_SOURCES += [ SearchSource $(sources) ] ; -Application supertux : $(sources) $(wrapper_objects) ; -C++Flags supertux : -DAPPDATADIR='\"$(appdatadir)\"' ; +#Application supertux : $(sources) $(wrapper_objects) ; +Application supertux : $(sources) $(wrapper_objects) : linkerfile ; +C++Flags supertux : -DAPPDATADIR=\'\"$(appdatadir)\"\' ; LinkWith supertux : squirrel ; -ExternalLibs supertux : SDL SDLIMAGE GL OPENAL VORBIS VORBISFILE OGG ICONV PHYSFS BINRELOC ; +ExternalLibs supertux : SDL SDLIMAGE GL OPENAL VORBIS VORBISFILE OGG ICONV PHYSFS BINRELOC LIBCURL ; Help supertux : "Build the supertux executable" ; -IncludeDir supertux : squirrel/include ; +IncludeDir supertux : squirrel/include squirrel ; +Package [ Wildcard scripting : *.cpp *.hpp ] ;