diff options
| author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-02-15 18:49:04 +0100 |
|---|---|---|
| committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-02-15 19:52:22 +0100 |
| commit | d17ba9a1409464e9de5b84acb7e67f0b21d82a39 (patch) | |
| tree | a448297ab30c4b2f0dfee650f414ffa44cb83be2 /modules/mono/godotsharp_dirs.h | |
| parent | 325efb60b7b4f7cb4ed11097c8f2e2de973e00d0 (diff) | |
| download | redot-engine-d17ba9a1409464e9de5b84acb7e67f0b21d82a39.tar.gz | |
Mono: Fix export template build errors
Fixes #25903
Diffstat (limited to 'modules/mono/godotsharp_dirs.h')
| -rw-r--r-- | modules/mono/godotsharp_dirs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/mono/godotsharp_dirs.h b/modules/mono/godotsharp_dirs.h index a038e6486c..556df959e2 100644 --- a/modules/mono/godotsharp_dirs.h +++ b/modules/mono/godotsharp_dirs.h @@ -53,7 +53,6 @@ String get_build_logs_dir(); String get_project_sln_path(); String get_project_csproj_path(); -String get_data_mono_bin_dir(); String get_data_editor_tools_dir(); String get_data_editor_prebuilt_api_dir(); #endif @@ -61,6 +60,10 @@ String get_data_editor_prebuilt_api_dir(); String get_data_mono_etc_dir(); String get_data_mono_lib_dir(); +#ifdef WINDOWS_ENABLED +String get_data_mono_bin_dir(); +#endif + } // namespace GodotSharpDirs #endif // GODOTSHARP_DIRS_H |
