generator.h 436 B

12345678910111213141516
  1. 
  2. #ifndef DSR_BUILDER_GENERATOR_MODULE
  3. #define DSR_BUILDER_GENERATOR_MODULE
  4. #include "../../../DFPSR/api/fileAPI.h"
  5. #include "builderTypes.h"
  6. using namespace dsr;
  7. // Generating a script to execute later.
  8. void generateCompilationScript(SessionContext &input, const ReadableString &scriptPath, ScriptLanguage language);
  9. // Calling the compiler directly.
  10. void executeBuildInstructions(SessionContext &input);
  11. #endif