BuildCmd.h 357 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #include "Command.h"
  3. using namespace Atomic;
  4. namespace ToolCore
  5. {
  6. class BuildCmd: public Command
  7. {
  8. OBJECT(BuildCmd);
  9. public:
  10. BuildCmd(Context* context);
  11. virtual ~BuildCmd();
  12. bool Parse(const Vector<String>& arguments, unsigned startIndex, String& errorMsg);
  13. void Run();
  14. private:
  15. String buildPlatform_;
  16. };
  17. }