Changeset 35
- Timestamp:
- 08/21/06 00:43:59 (2 years ago)
- Files:
-
- branches/scons_build_creation/Source/Base/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/Action/RenderTraversal/build.info (added)
- branches/scons_build_creation/Source/System/FileIO/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/GraphOp/build.info (added)
- branches/scons_build_creation/Source/System/Image/FileIO/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Groups/Light/Shadow/build.info (added)
- branches/scons_build_creation/Source/System/NodeCores/Groups/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/State/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/Statistics/Foregrounds/build.info (added)
- branches/scons_build_creation/Source/System/Text/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/Window/Utilities/build.info (added)
- branches/scons_build_creation/Source/System/Window/build.info (modified) (1 diff)
- branches/scons_build_creation/Source/System/build.info (modified) (3 diffs)
- branches/scons_build_creation/Source/WindowSystem/GLUT/build.info (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/scons_build_creation/Source/Base/build.info
r21 r35 7 7 osg_dep_libs = [] 8 8 if "win32" == platform: 9 libs = [ ]9 libs = ['opengl32'] 10 10 cpppath = [] 11 11 else: 12 libs = [" pthread","dl","m"]12 libs = ["GL","pthread","dl","m"] 13 13 cpppath = [] branches/scons_build_creation/Source/System/FileIO/build.info
r21 r35 5 5 else: 6 6 library = "OSGFileIO" 7 osg_dep_libs = ['OSGBase', 'OSGSystem'] 7 osg_dep_libs = ['OSGBase', 'OSGSystem', 'OSGGroup', 'OSGDrawable', 'OSGState'] 8 9 # Tests' dependencies 10 11 test_libs = [] 12 test_cpppath = [] 13 test_libpath = [] branches/scons_build_creation/Source/System/Image/FileIO/build.info
r34 r35 7 7 osg_lib_deps = ['OSGBase',"OSGSystem"] 8 8 9 # Tests' dependencies 10 11 test_libs = [ 'OSGWindowGLUT' ] 12 test_cpppath = [] 13 test_libpath = [] 14 branches/scons_build_creation/Source/System/NodeCores/Drawables/build.info
r21 r35 6 6 library = "OSGDrawable" 7 7 osg_dep_libs = ['OSGBase', 'OSGSystem', 'OSGState'] 8 9 # Tests' dependencies 10 11 test_libs = [ 'OSGGroup', 'OSGFileIO', 'OSGWindow', 'OSGUtil' ] 12 test_cpppath = [] 13 test_libpath = [] branches/scons_build_creation/Source/System/NodeCores/Groups/build.info
r34 r35 9 9 # Tests' dependencies 10 10 11 test_libs = [ 'OSGWindowGLUT' ]11 test_libs = [ 'OSGWindowGLUT', 'OSGRenderTraversal' ] 12 12 test_cpppath = [] 13 13 test_libpath = [] branches/scons_build_creation/Source/System/State/build.info
r21 r35 6 6 library = "OSGState" 7 7 osg_dep_libs = ['OSGBase', 'OSGSystem'] 8 9 # Tests' dependencies 10 11 test_libs = [ 'OSGWindowGLUT' ] 12 test_cpppath = [] 13 test_libpath = [] branches/scons_build_creation/Source/System/Text/build.info
r34 r35 6 6 library = "OSGText" 7 7 osg_dep_libs = ['OSGBase',"OSGSystem"] 8 9 # Tests' dependencies 10 11 test_libs = [ 'OSGWindowGLUT', 'OSGDrawable' ] 12 test_cpppath = [] 13 test_libpath = [] branches/scons_build_creation/Source/System/Window/build.info
r34 r35 6 6 library = "OSGWindow" 7 7 osg_dep_libs = ['OSGBase',"OSGSystem"] 8 9 # Tests' dependencies 10 11 test_libs = [ 'OSGGroup', 'OSGDrawable' ] 12 test_cpppath = [] 13 test_libpath = [] branches/scons_build_creation/Source/System/build.info
r34 r35 10 10 11 11 library = "OSGSystem" 12 osg_dep_libs = ['OSGBase'] #, 'OSGText'] 13 14 if "win32" == platform: 15 libs = ['opengl32'] 16 cpppath = [] 17 else: 18 libs = ['GL'] 19 cpppath = [] 12 osg_dep_libs = ['OSGBase'] 20 13 21 14 for option in [jpeg_option, tiff_option, png_option]: … … 29 22 # Tests' dependencies 30 23 31 test_libs = [ 'OSGGroup', 'OSGDrawable', 'OSGFileIO', 'OSGWindow', 'OSGWindowX' ] 24 test_libs = [ 'OSGGroup', 'OSGDrawable', 'OSGFileIO', 'OSGWindow', 25 'OSGWindowX', 'OSGUtil', 'OSGText' ] 32 26 test_cpppath = [] 33 27 test_libpath = [] … … 41 35 test_libpath.append(option.libDir) 42 36 43 # hack until the dependency loop is fixed44 test_libs += [ 'OSGText' ]45 branches/scons_build_creation/Source/WindowSystem/GLUT/build.info
r34 r35 9 9 # Tests' dependencies 10 10 11 test_libs = [ 'OSGWindow' ]11 test_libs = [ 'OSGWindow', 'OSGRenderTraversal' ] 12 12 test_cpppath = [] 13 13 test_libpath = []
