polybuild.h 247 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "stdio.h"
  3. #include "PolyString.h"
  4. #include "PolyObject.h"
  5. #include "OSBasics.h"
  6. #ifdef _WINDOWS
  7. #include <time.h>
  8. #include <io.h>
  9. #endif
  10. using namespace Polycode;
  11. class BuildArg {
  12. public:
  13. String name;
  14. String value;
  15. };