Changeset 608 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src
- Timestamp:
- May 16, 2008, 9:40:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Program.cpp
r519 r608 92 92 { 93 93 // DLLとしてビルド 94 compiler.SetTargetModuleType( Compiler::Dll );94 compiler.SetTargetModuleType( ActiveBasic::Common::TargetModuleType::Dll ); 95 95 } 96 96 else if( cmdLine.GetCommand() == "static_library" ) 97 97 { 98 98 // 静的リンクライブラリとしてビルド 99 compiler.SetTargetModuleType( Compiler::StaticLibrary);99 compiler.SetTargetModuleType( ActiveBasic::Common::TargetModuleType::Sll ); 100 100 } 101 101 else if( cmdLine.GetCommand() == "unicode" ) … … 118 118 // '/' があった場合は '\\' に置換 119 119 Jenga::Common::StringReplace( includeDir, "/", "\\" ); 120 } 121 else if( cmdLine.GetCommand() == "?" || cmdLine.GetCommand() == "help" ) 122 { 123 std::cout << "TODO: ActiveBasic command line help." << std::endl; 120 124 } 121 125 else
Note:
See TracChangeset
for help on using the changeset viewer.