Changeset 52 for branches/scons_build_creation/SConstruct
- Timestamp:
- 09/05/06 17:06:25 (2 years ago)
- Files:
-
- branches/scons_build_creation/SConstruct (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/scons_build_creation/SConstruct
r45 r52 96 96 # Create option objects 97 97 boost_options = sca_opts.Boost.Boost("boost","1.31.0",required=True) 98 99 glut_libname = "glut" 100 tiff_libname = "tiff" 101 if "win32" == platform: 102 glut_libname = "glut32" 103 tiff_libname = "tif32" 104 98 105 jpeg_option = sca_opts.StandardPackageOption("jpeg","Jpeg library location", 99 106 library="jpeg", required=False) 100 107 tiff_option = sca_opts.StandardPackageOption("tiff","Tiff library location", 101 library= "tiff", required=False)108 library=tiff_libname, required=False) 102 109 png_option = sca_opts.StandardPackageOption("png","PNG library location", 103 110 library="png", required=False) 104 105 111 glut_option = sca_opts.StandardPackageOption("glut","GLUT library location", 106 library= "glut", header="GL/glut.h", required=False)112 library=glut_libname, header="GL/glut.h", required=False) 107 113 108 114 format_options = [jpeg_option,tiff_option,png_option]
