libraries + self building + work on extensions

This commit is contained in:
Hunter 2024-09-28 20:21:30 -04:00
parent b6ee9d0dc3
commit 3ddb2943bc
14 changed files with 97 additions and 39 deletions

View file

@ -43,8 +43,8 @@ std::string grbc_find_compiler(const std::string &compiler_name) {
if (std::filesystem::exists(
std::filesystem::path(current_path) /
std::filesystem::path(compiler_name + ".exe"))) {
return std::filesystem::path(current_path) /
std::filesystem::path(compiler_name + ".exe");
return (std::filesystem::path(current_path) /
std::filesystem::path(compiler_name + ".exe")).generic_string();
}
}