npi-build/include/helper.hpp
2024-03-11 14:13:36 +01:00

11 lines
362 B
C++

#pragma once
#include <prj_def.hpp>
#include <string>
namespace helper {
std::string GenerateUniqueId();
void ArrayToFile(unsigned char *array_, size_t size_, std::string filename);
void GenerateTemplateFile(std::string path, NpiProject prj);
void CompileProject(std::string path, bool async = false);
void CleanProject(std::string path);
} // namespace helper