Ignore:
Timestamp:
Mar 31, 2008, 12:33:24 PM (16 years ago)
Author:
dai_9181
Message:

デプロイ時にcore.lib/cored.libのビルドもできるようにした。

File:
1 edited

Legend:

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

    r467 r472  
    181181                else
    182182                {
    183                     compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );
     183                    compiler.errorMessenger.Output( 203, path.GetFullPath() );
    184184                    isSuccessfulLoadStaticLinkLibrary = false;
    185185                }
     
    187187            else
    188188            {
    189                 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );
     189                compiler.errorMessenger.Output( 202, path.GetFullPath() );
    190190                isSuccessfulLoadStaticLinkLibrary = false;
    191191            }
     
    204204                else
    205205                {
    206                     compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );
     206                    compiler.errorMessenger.Output( 203, path.GetFullPath() );
    207207                    isSuccessfulLoadStaticLinkLibrary = false;
    208208                }
     
    210210            else
    211211            {
    212                 compiler.messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );
     212                compiler.errorMessenger.Output( 202, path.GetFullPath() );
    213213                isSuccessfulLoadStaticLinkLibrary = false;
    214214            }
     
    280280    SetDlgItemText(hMainDlg,IDOK,STRING_CLOSE);
    281281
     282    // エラーがない場合はビルド成功とする
     283    if( !compiler.errorMessenger.HasError() )
     284    {
     285        // ビルド成功
     286        compiler.BuildSuccessful();
     287    }
     288
    282289#ifdef _DEBUG
    283290    // デバッグモードのときはダイアログが隠れている
Note: See TracChangeset for help on using the changeset viewer.