Changeset 459 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp
- Timestamp:
- Mar 23, 2008, 10:38:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp
r457 r459 620 620 { 621 621 // デバッグ ビルド 622 bDebugCompile = 1;622 compiler.SetDebugMark( true ); 623 623 } 624 624 else if( cmdLine.GetCommand() == "run" ) … … 726 726 if( compiler.IsStaticLibrary() ) 727 727 { 728 if( bDebugCompile||bDebugRun)728 if( bDebugRun || compiler.IsDebug() ) 729 729 { 730 730 lstrcat(OutputFileName,"_debug.abobj"); … … 737 737 else 738 738 { 739 if( bDebugCompile||bDebugRun)739 if( bDebugRun || compiler.IsDebug() ) 740 740 { 741 741 lstrcat(OutputFileName,"_debug.exe");
Note:
See TracChangeset
for help on using the changeset viewer.