This commit is contained in:
parent
9bd12660eb
commit
d98738fe68
4 changed files with 88 additions and 146 deletions
|
|
@ -36,6 +36,7 @@ namespace Crafter {
|
|||
ModulePartition(std::string&& name, fs::path&& path);
|
||||
bool Check(const fs::path& pcmDir);
|
||||
void Compile(const std::string_view clang, const fs::path& pcmDir, const fs::path& buildDir, std::string& result);
|
||||
void CompileSource(const std::string_view clang, const fs::path& pcmDir, const fs::path& buildDir, std::string& result);
|
||||
};
|
||||
|
||||
export class Module {
|
||||
|
|
@ -51,5 +52,6 @@ namespace Crafter {
|
|||
Module(std::string&& name, fs::path&& path, std::vector<std::unique_ptr<ModulePartition>>&& partitions);
|
||||
bool Check(const fs::path& pcmDir);
|
||||
void Compile(const std::string_view clang, const fs::path& pcmDir, const fs::path& buildDir, std::string& result);
|
||||
void CompileSource(const std::string_view clang, const fs::path& pcmDir, const fs::path& buildDir, std::string& result);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue