Changeset 951
- Timestamp:
- 09/10/07 14:21:16 (1 year ago)
- Files:
-
- branches/fcptr_stable_jun07/SConstruct (modified) (1 diff)
- branches/fcptr_stable_jun07/Source/SConscript (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/fcptr_stable_jun07/SConstruct
r680 r951 867 867 inst_paths['lib'] = inst_paths['lib'] + '64' 868 868 inst_paths["lib_inst_combo"] = inst_paths["lib"] 869 if GetPlatform() != "win32": 869 if GetPlatform() == "win32": 870 inst_paths["lib_inst_combo"] = pj(inst_paths["lib_inst_combo"], lib_subdir) 871 else: 870 872 if "debug" == combo["type"]: 871 873 inst_paths["lib_inst_combo"] = pj(inst_paths["lib_inst_combo"],"debug") branches/fcptr_stable_jun07/Source/SConscript
r909 r951 46 46 47 47 # Define OSG_DEBUG if needed 48 if combo["type"] in ["debug"," hybrid"]:48 if combo["type"] in ["debug","debugrt"]: 49 49 lib_env.Append(CPPDEFINES=["OSG_DEBUG",]) 50 50 … … 59 59 lib_env.Append(LIBS = ["MSVCPRT$DEBUG_CHAR", "MSVCRT$DEBUG_CHAR"]) 60 60 61 if "debug " == combo["type"]:61 if "debugrt" == combo["type"]: 62 62 lib_env["DEBUG_CHAR"]='D' 63 63 else: … … 122 122 unittest_env.Append(LIBS = ["MSVCPRT$DEBUG_CHAR", "MSVCRT$DEBUG_CHAR"]) 123 123 124 if "debug " == combo["type"] or "hybrid" == combo["type"]:124 if "debugrt" == combo["type"]: 125 125 unittest_env["DEBUG_CHAR"]='D' 126 126 unittest_env["UTDBGDIR"]='dbg'
