diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-29 10:36:17 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-29 10:36:17 +0200 |
commit | cb96fc95c3ce43dc6f394283bc027576833ebe07 (patch) | |
tree | 56b268d0ec097483f9f16858868be7401e5d5ad3 /modules/mono/editor | |
parent | 96cbcc30e26e7482633e8e651ca4058bdfea29c3 (diff) | |
parent | 346cbc7f1f206f4540520a92bf7def97b9be0af8 (diff) | |
download | redot-engine-cb96fc95c3ce43dc6f394283bc027576833ebe07.tar.gz |
Merge pull request #92316 from alula/msvc-clang
Add support for compiling with VS clang-cl toolset
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/hostfxr_resolver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/editor/hostfxr_resolver.cpp b/modules/mono/editor/hostfxr_resolver.cpp index e93c9a5faf..9c37ac810a 100644 --- a/modules/mono/editor/hostfxr_resolver.cpp +++ b/modules/mono/editor/hostfxr_resolver.cpp @@ -216,6 +216,7 @@ bool get_default_installation_dir(String &r_dotnet_root) { #endif } +#ifndef WINDOWS_ENABLED bool get_install_location_from_file(const String &p_file_path, String &r_dotnet_root) { Error err = OK; Ref<FileAccess> f = FileAccess::open(p_file_path, FileAccess::READ, &err); @@ -233,6 +234,7 @@ bool get_install_location_from_file(const String &p_file_path, String &r_dotnet_ r_dotnet_root = line; return true; } +#endif bool get_dotnet_self_registered_dir(String &r_dotnet_root) { #if defined(WINDOWS_ENABLED) |