From e3a1bf247d65e9aaffb28548bfb6295cd6720cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 19 Oct 2017 23:49:49 +0200 Subject: [PATCH] Document -export_debug option in the help output Fixes #5903. --- .gitignore | 1 + main/main.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 27c2b07a53..6d07b04510 100644 --- a/.gitignore +++ b/.gitignore @@ -55,6 +55,7 @@ gmon.out # Misc .DS_Store +logs/ # for projects that use SCons for building: http://http://www.scons.org/ .sconsign.dblite diff --git a/main/main.cpp b/main/main.cpp index 226f8bae98..f551f4c8d1 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -190,6 +190,7 @@ void Main::print_help(const char *p_binary) { OS::get_singleton()->print("\t-optimize : Save an optimized copy of scene to .\n"); OS::get_singleton()->print("\t-optimize_preset : Use a given preset for optimization.\n"); OS::get_singleton()->print("\t-export : Export the project using given export target.\n"); + OS::get_singleton()->print("\t-export_debug : Use together with -export, enables debug mode for the template.\n"); #endif }