X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2FJamfile;h=38492e855f1a38603542420dd746109f6b01f938;hb=311e23e2671e47d5cbbb06a869282be3238573de;hp=9ac13fb0b05672964beefd07594d07dc8dd2ef6f;hpb=f3a7c2a5d9f200bb51ecf9a8c97612cdc6660379;p=supertux.git diff --git a/src/Jamfile b/src/Jamfile index 9ac13fb0b..38492e855 100644 --- a/src/Jamfile +++ b/src/Jamfile @@ -4,24 +4,27 @@ SubInclude TOP src squirrel ; SubInclude TOP src scripting ; sources = - [ Wildcard *.cpp *.h ] - [ Wildcard math : *.cpp *.h ] - [ Wildcard video : *.cpp *.h ] - [ Wildcard audio : *.cpp *.h ] - [ Wildcard gui : *.cpp *.h ] - [ Wildcard lisp : *.cpp *.h ] - [ Wildcard object : *.cpp *.h ] - [ Wildcard badguy : *.cpp *.h ] - [ Wildcard sprite : *.cpp *.h ] - [ Wildcard trigger : *.cpp *.h ] - [ Wildcard tinygettext : *.cpp *.h ] - [ Wildcard control : *.cpp *.h ] + [ Wildcard *.cpp *.hpp ] + [ Wildcard audio : *.cpp *.hpp ] + [ Wildcard audio/newapi : *.cpp *.hpp ] + [ Wildcard badguy : *.cpp *.hpp ] + [ Wildcard control : *.cpp *.hpp ] + [ Wildcard gui : *.cpp *.hpp ] + [ Wildcard lisp : *.cpp *.hpp ] + [ Wildcard math : *.cpp *.hpp ] + [ Wildcard object : *.cpp *.hpp ] + [ Wildcard physfs : *.cpp *.hpp ] + [ Wildcard sprite : *.cpp *.hpp ] + [ Wildcard tinygettext : *.cpp *.hpp ] + [ Wildcard trigger : *.cpp *.hpp ] + [ Wildcard video : *.cpp *.hpp ] ; TRANSLATABLE_SOURCES += [ SearchSource $(sources) ] ; Application supertux : $(sources) $(wrapper_objects) ; +C++Flags supertux : -DAPPDATADIR='\"$(appdatadir)\"' ; LinkWith supertux : squirrel ; -ExternalLibs supertux : SDL SDLMIXER SDLIMAGE GL ICONV ; +ExternalLibs supertux : SDL SDLIMAGE GL OPENAL VORBIS VORBISFILE OGG ICONV PHYSFS BINRELOC ; Help supertux : "Build the supertux executable" ; IncludeDir supertux : squirrel/include ;