Browse Source

Document -export_debug option in the help output

Fixes #5903.
Rémi Verschelde 7 years ago
parent
commit
e3a1bf247d
2 changed files with 2 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 1 0
      main/main.cpp

+ 1 - 0
.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

+ 1 - 0
main/main.cpp

@@ -190,6 +190,7 @@ void Main::print_help(const char *p_binary) {
 	OS::get_singleton()->print("\t-optimize <file> : Save an optimized copy of scene to <file>.\n");
 	OS::get_singleton()->print("\t-optimize_preset <preset> : Use a given preset for optimization.\n");
 	OS::get_singleton()->print("\t-export <target> : 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
 }