Changeset 301
- Timestamp:
- 10/16/06 10:30:41 (2 years ago)
- Files:
-
- branches/Dirk_RenderTraversalWork/SConstruct (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Dirk_RenderTraversalWork/SConstruct
r221 r301 241 241 zlib_option = sca_opts.StandardPackageOption("zlib","zlib library location", 242 242 library="z", header="zlib.h", required=False) 243 244 format_options = [jpeg_option,tiff_option,png_option,zlib_option] 243 nvperfsdk_option = sca_opts.StandardPackageOption("NVPerfSDK", "NVPerfSDK library location", header="NVPerfSDK.h", 244 library="NVPerfSDK", required=False) 245 246 format_options = [jpeg_option,tiff_option,png_option,zlib_option,nvperfsdk_option] 245 247 # Setup options 246 248 opts.AddOption(sca_opts.SeparatorOption("\nStandard settings")) … … 264 266 opts.AddOption(sca_opts.BoolOption("enable_fcdprocess","If true, enable support for fcdProcess in the build.",False)) 265 267 opts.AddOption(sca_opts.BoolOption("enable_unittests","If true, enable unit tests in the build.",True)) 266 opts.Add("icc_gnu_compat","<GCC Ver ion> to make the icc resultbinary compatible to the given gcc version. (unsupported)")268 opts.Add("icc_gnu_compat","<GCC Version> to make the icc resultbinary compatible to the given gcc version. (unsupported)") 267 269 if "win32" == platform: 268 270 opts.AddOption(sca_opts.BoolOption("win_localstorage", "Use local storage instead of __declspec to get thread local storage on windows", … … 500 502 "OSG_WITH_GLUT":glut_option.isAvailable(), 501 503 "OSG_WITH_GIF":common_env["enable_gif"], 502 "OSG_WITH_ZLIB":zlib_option.isAvailable() 504 "OSG_WITH_ZLIB":zlib_option.isAvailable(), 505 "OSG_WITH_NVPERFSDK":nvperfsdk_option.isAvailable() 503 506 } 504 507 if "win32" == platform: # Win32 specific defines
