Changeset 19039
- Timestamp:
- 07/13/06 09:05:08 (2 years ago)
- Files:
-
- juggler/trunk/build_windows.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/build_windows.py
r19038 r19039 198 198 required.append(BuildOption('NSPR_ROOT', 'NSPR installation directory', '')) 199 199 required.append(BuildOption('CPPDOM_ROOT', 'CppDOM installation directory', 200 '')) 201 required.append(BuildOption('CPPDOM_INCLUDES', 202 'Directory containing the CppDOM header tree', 200 203 '')) 201 204 required.append(BuildOption('GMTL_ROOT', 'GMTL installation directory', '')) … … 265 268 boost_ver = result 266 269 options['BOOST_INCLUDES'] = boost_dir + r'\include\boost-' + boost_ver 270 271 # The following is a little hack to get a reasonable default set for 272 # the CPPDOM_INCLUDES variable before the user has to enter it manually. 273 if opt.envVar == 'CPPDOM_ROOT': 274 options['CPPDOM_INCLUDES'] = os.path.join(result, 'include') 267 275 268 276 print "+++ Optional Settings"
