|
From: <sik...@us...> - 2006-05-20 18:39:55
|
Revision: 48 Author: sik0fewl Date: 2006-05-20 11:39:44 -0700 (Sat, 20 May 2006) ViewCVS: http://svn.sourceforge.net/perceptioncrash/?rev=48&view=rev Log Message: ----------- Moved tinyxml into lib/ directory Created build rules for TinyXML library Modified Paths: -------------- trunk/perceptioncrash/Jamfile trunk/perceptioncrash/Jamrules trunk/perceptioncrash/src/Jamfile Added Paths: ----------- trunk/perceptioncrash/lib/ trunk/perceptioncrash/lib/Jamfile trunk/perceptioncrash/lib/tinyxml/ trunk/perceptioncrash/lib/tinyxml/Jamfile Removed Paths: ------------- trunk/perceptioncrash/src/tinyxml/ Modified: trunk/perceptioncrash/Jamfile =================================================================== --- trunk/perceptioncrash/Jamfile 2006-05-19 18:48:13 UTC (rev 47) +++ trunk/perceptioncrash/Jamfile 2006-05-20 18:39:44 UTC (rev 48) @@ -1,5 +1,6 @@ SubDir TOP ; +SubInclude TOP lib ; SubInclude TOP src ; UseAutoconf ; Modified: trunk/perceptioncrash/Jamrules =================================================================== --- trunk/perceptioncrash/Jamrules 2006-05-19 18:48:13 UTC (rev 47) +++ trunk/perceptioncrash/Jamrules 2006-05-20 18:39:44 UTC (rev 48) @@ -40,5 +40,6 @@ # Include the top_builddir dir, because it contains config.h IncludeDir $(top_builddir) ; -# also add the src dir as include directory +# also add the src and lib dirs as include directories IncludeDir $(TOP)/src ; +IncludeDir $(TOP)/lib ; Added: trunk/perceptioncrash/lib/Jamfile =================================================================== --- trunk/perceptioncrash/lib/Jamfile (rev 0) +++ trunk/perceptioncrash/lib/Jamfile 2006-05-20 18:39:44 UTC (rev 48) @@ -0,0 +1,3 @@ +SubDir TOP lib ; + +SubInclude TOP lib tinyxml ; Copied: trunk/perceptioncrash/lib/tinyxml (from rev 47, trunk/perceptioncrash/src/tinyxml) Added: trunk/perceptioncrash/lib/tinyxml/Jamfile =================================================================== --- trunk/perceptioncrash/lib/tinyxml/Jamfile (rev 0) +++ trunk/perceptioncrash/lib/tinyxml/Jamfile 2006-05-20 18:39:44 UTC (rev 48) @@ -0,0 +1,11 @@ +SubDir TOP lib tinyxml ; + +# TinyXML source files +Library tinyxml + : tinystr.h tinyxml.h tinystr.cpp tinyxml.cpp tinyxmlerror.cpp tinyxmlparser.cpp + : noinstall ; + +#ExternalLibs perceptioncrash : OGRE CEGUI CEGUIOGRERENDERER ; + +# Construct a description for the help target +Help tinyxml : "Build the TinyXML library" ; Modified: trunk/perceptioncrash/src/Jamfile =================================================================== --- trunk/perceptioncrash/src/Jamfile 2006-05-19 18:48:13 UTC (rev 47) +++ trunk/perceptioncrash/src/Jamfile 2006-05-20 18:39:44 UTC (rev 48) @@ -6,9 +6,6 @@ [ Wildcard *.cpp *.hpp ] ; -# We link with the samplelib from the same package -#LinkWith sample : sharedlib staticlib ; - # If SDL is available we link with it and define SDL_AVAILABLE constant #if $(SDL_LIBS) != "" || $(SDL_CFLAGS) != "" #{ @@ -17,6 +14,7 @@ #} Application perceptioncrash : $(sources) ; +LinkWith perceptioncrash : tinyxml ; ExternalLibs perceptioncrash : OGRE CEGUI CEGUIOGRERENDERER ; # Construct a description for the help target This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |