diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-18 12:05:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-18 12:06:24 +0200 |
commit | 2b6bbf8dceb7e31039d23aab05cde447225e1f7c (patch) | |
tree | fa5c126467689e9c95f11698ac4dc0775c8bd9a6 /main | |
parent | 4e0f31a67cb757f95a658a02ac28afcdda40b299 (diff) |
Mono: Always define options in main.cpp to keep them in docs
Otherwise generating docs with non-Mono builds removes them,
which is not so convenient for the documentation work.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 92b07dc83b..747b12677d 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1633,6 +1633,8 @@ bool Main::start() { GLOBAL_DEF("mono/profiler/args", "log:calls,alloc,sample,output=output.mlpd"); GLOBAL_DEF("mono/profiler/enabled", false); GLOBAL_DEF("mono/unhandled_exception_policy", 0); + // From editor/csharp_project.cpp. + GLOBAL_DEF("mono/project/auto_update_project", true); #endif DocData doc; |