Changeset 19260
- Timestamp:
- 08/23/06 09:25:34 (2 years ago)
- Files:
-
- juggler/trunk/build_windows.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/build_windows.py
r19259 r19260 303 303 if opt.envVar == 'BOOST_ROOT': 304 304 boost_dir = result 305 elif opt.envVar == 'BOOST_VERSION' :305 elif opt.envVar == 'BOOST_VERSION' and not options.has_key('BOOST_INCLUDES'): 306 306 boost_ver = result 307 307 options['BOOST_INCLUDES'] = boost_dir + r'\include\boost-' + boost_ver … … 309 309 # The following is a little hack to get a reasonable default set for 310 310 # the CPPDOM_INCLUDES variable before the user has to enter it manually. 311 if opt.envVar == 'CPPDOM_ROOT' :311 if opt.envVar == 'CPPDOM_ROOT' and not options.has_key('CPPDOM_INCLUDES'): 312 312 options['CPPDOM_INCLUDES'] = os.path.join(result, 'include') 313 313 314 314 # The following is a little hack to get a reasonable default set for 315 315 # the GMTL_INCLUDES variable before the user has to enter it manually. 316 if opt.envVar == 'GMTL_ROOT' :316 if opt.envVar == 'GMTL_ROOT' and not options.has_key('GMTL_INCLUDES'): 317 317 options['GMTL_INCLUDES'] = os.path.join(result, 'include') 318 318
