Changeset 466 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
- Timestamp:
- Mar 25, 2008, 10:25:32 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
r465 r466 180 180 if( compiler.staticLibraries.back()->Read( coreFilePath ) ) 181 181 { 182 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" を読み込みました。").c_str() );182 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" を読み込みました。").c_str() ); 183 183 } 184 184 else 185 185 { 186 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" ファイルが壊れています。").c_str() );186 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() ); 187 187 isSuccessfulLoadStaticLinkLibrary = false; 188 188 } … … 190 190 else 191 191 { 192 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" ファイルが存在しません。").c_str() );192 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() ); 193 193 isSuccessfulLoadStaticLinkLibrary = false; 194 194 } … … 203 203 if( compiler.staticLibraries.back()->Read( filePath ) ) 204 204 { 205 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" を読み込みました。").c_str() );205 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" を読み込みました。").c_str() ); 206 206 } 207 207 else 208 208 { 209 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" ファイルが壊れています。").c_str() );209 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() ); 210 210 isSuccessfulLoadStaticLinkLibrary = false; 211 211 } … … 213 213 else 214 214 { 215 compiler.messenger.Output( ((string)"\"" + path.GetF ileName() + path.GetExt() + "\" ファイルが存在しません。").c_str() );215 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() ); 216 216 isSuccessfulLoadStaticLinkLibrary = false; 217 217 }
Note:
See TracChangeset
for help on using the changeset viewer.