11 lines
362 B
C++
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
|