npi-build/include/helper.hpp

11 lines
362 B
C++
Raw Permalink Normal View History

2023-11-24 14:42:57 +01:00
#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);
2024-03-11 14:13:36 +01:00
void CompileProject(std::string path, bool async = false);
2023-11-24 14:42:57 +01:00
void CleanProject(std::string path);
2024-03-11 14:13:36 +01:00
} // namespace helper