Changeset 554 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
- Timestamp:
 - May 5, 2008, 1:23:46 AM (18 years ago)
 - File:
 - 
      
- 1 edited
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
r545 r554 4 4 5 5 #include "common.h" 6 #include <ver.h> 6 7 7 8 void StepCompileProgress(void){ … … 65 66 compiler.GetObjectModule().SetCurrentSourceIndex( (int)compiler.GetObjectModule().GetSources().size() ); 66 67 compiler.GetObjectModule().GetSources().push_back( BasicSource() ); 67 if( !compiler.GetObjectModule().GetCurrentSource().ReadFile( program.GetSourceFilePath() ) ){ 68 bool result = compiler.GetObjectModule().GetCurrentSource().ReadFile( 69 program.GetSourceFilePath(), 70 compiler.IsDebug(), 71 compiler.IsDll(), 72 compiler.IsUnicode(), 73 MAJOR_VER 74 ); 75 if( !result ){ 68 76 compiler.errorMessenger.Output(201,program.GetSourceFilePath(),-1); 69 77 goto EndCompile;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  