summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor
diff options
context:
space:
mode:
authorAlula <6276139+alula@users.noreply.github.com>2024-05-24 15:07:22 +0200
committerThaddeus Crews <repiteo@outlook.com>2024-08-28 13:30:44 -0500
commit346cbc7f1f206f4540520a92bf7def97b9be0af8 (patch)
tree54b1ec735002410018bccb9e5fc36514adccb667 /modules/mono/editor
parentf648de1a83cf006dbfdaa075219ad4348628e58f (diff)
downloadredot-engine-346cbc7f1f206f4540520a92bf7def97b9be0af8.tar.gz
Add support for compiling with VS clang-cl toolset
Diffstat (limited to 'modules/mono/editor')
-rw-r--r--modules/mono/editor/hostfxr_resolver.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/editor/hostfxr_resolver.cpp b/modules/mono/editor/hostfxr_resolver.cpp
index 7fa482969e..30dd0a8c56 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)