Changeset 269 in dev for trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
- Timestamp:
- Aug 8, 2007, 4:19:30 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
r266 r269 566 566 //_Test(); 567 567 568 MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK);568 //MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK); 569 569 trace( "Start ActiveBasic Compiler!" ); 570 570 … … 751 751 lstrcat(OutputFileName,temporary); 752 752 lstrcat(OutputFileName,temp2); 753 if(bDebugCompile||bDebugRun) lstrcat(OutputFileName,"_debug.exe"); 754 else lstrcat(OutputFileName,".exe"); 753 if( compiler.IsStaticLibrary() ) 754 { 755 if(bDebugCompile||bDebugRun) 756 { 757 lstrcat(OutputFileName,"_debug.abobj"); 758 } 759 else 760 { 761 lstrcat(OutputFileName,".abobj"); 762 } 763 } 764 else 765 { 766 if(bDebugCompile||bDebugRun) 767 { 768 lstrcat(OutputFileName,"_debug.exe"); 769 } 770 else 771 { 772 lstrcat(OutputFileName,".exe"); 773 } 774 } 755 775 } 756 776
Note:
See TracChangeset
for help on using the changeset viewer.