Ignore:
Timestamp:
May 16, 2008, 9:40:59 PM (16 years ago)
Author:
dai_9181
Message:

静的リンクライブラリプロジェクトの作成(IDE側)に対応。

File:
1 edited

Legend:

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

    r519 r608  
    9292        {
    9393            // DLLとしてビルド
    94             compiler.SetTargetModuleType( Compiler::Dll );
     94            compiler.SetTargetModuleType( ActiveBasic::Common::TargetModuleType::Dll );
    9595        }
    9696        else if( cmdLine.GetCommand() == "static_library" )
    9797        {
    9898            // 静的リンクライブラリとしてビルド
    99             compiler.SetTargetModuleType( Compiler::StaticLibrary );
     99            compiler.SetTargetModuleType( ActiveBasic::Common::TargetModuleType::Sll );
    100100        }
    101101        else if( cmdLine.GetCommand() == "unicode" )
     
    118118            // '/' があった場合は '\\' に置換
    119119            Jenga::Common::StringReplace( includeDir, "/", "\\" );
     120        }
     121        else if( cmdLine.GetCommand() == "?" || cmdLine.GetCommand() == "help" )
     122        {
     123            std::cout << "TODO: ActiveBasic command line help." << std::endl;
    120124        }
    121125        else
Note: See TracChangeset for help on using the changeset viewer.