Ignore:
Timestamp:
Mar 25, 2008, 10:25:32 AM (16 years ago)
Author:
dai_9181
Message:

ファイルバージョンを更新(5.0.6.0にあげた)。
libファイルに関するメッセージを出力する際、ファイル名ではなく絶対パスを表示するようにした。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp

    r465 r466  
    180180                if( compiler.staticLibraries.back()->Read( coreFilePath ) )
    181181                {
    182                     compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" を読み込みました。").c_str() );
     182                    compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" を読み込みました。").c_str() );
    183183                }
    184184                else
    185185                {
    186                     compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" ファイルが壊れています。").c_str() );
     186                    compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );
    187187                    isSuccessfulLoadStaticLinkLibrary = false;
    188188                }
     
    190190            else
    191191            {
    192                 compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" ファイルが存在しません。").c_str() );
     192                compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );
    193193                isSuccessfulLoadStaticLinkLibrary = false;
    194194            }
     
    203203                if( compiler.staticLibraries.back()->Read( filePath ) )
    204204                {
    205                     compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" を読み込みました。").c_str() );
     205                    compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" を読み込みました。").c_str() );
    206206                }
    207207                else
    208208                {
    209                     compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" ファイルが壊れています。").c_str() );
     209                    compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );
    210210                    isSuccessfulLoadStaticLinkLibrary = false;
    211211                }
     
    213213            else
    214214            {
    215                 compiler.messenger.Output( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" ファイルが存在しません。").c_str() );
     215                compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );
    216216                isSuccessfulLoadStaticLinkLibrary = false;
    217217            }
Note: See TracChangeset for help on using the changeset viewer.