BuildWeb.h 557 B

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #pragma once
  5. #include "BuildBase.h"
  6. namespace ToolCore
  7. {
  8. class Project;
  9. class BuildWeb : public BuildBase
  10. {
  11. OBJECT(BuildWeb);
  12. public:
  13. BuildWeb(Context* context, Project* project);
  14. virtual ~BuildWeb();
  15. void Build(const String& buildPath);
  16. String GetBuildSubfolder() { return "Web-Build"; }
  17. protected:
  18. void Initialize();
  19. };
  20. }