| 123456789101112131415161718192021222324 |
- #include "../Project/Project.h"
- #include "../Build/BuildMac.h"
- #include "PlatformMac.h"
- namespace ToolCore
- {
- PlatformMac::PlatformMac(Context* context) : Platform(context)
- {
- }
- PlatformMac::~PlatformMac()
- {
- }
- BuildBase* PlatformMac::NewBuild(Project *project)
- {
- return new BuildMac(context_, project);
- }
- }
|