diff options
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/src/config.l b/src/config.l index faee601..e63d0bb 100644 --- a/src/config.l +++ b/src/config.l @@ -1319,18 +1319,29 @@ void Config::create() "where doxygen was started. If left blank the current directory will be used.\n" ); cs->setWidgetType(ConfigString::Dir); + cb = addBool( + "CREATE_SUBDIRS", + "If the CREATE_SUBDIRS tag is set to YES, then doxygen will create \n" + "2 levels of 10 sub-directories under the output directory of each output \n" + "format and will distribute the generated files over these directories. \n" + "Enabling this option can be useful when feeding doxygen a huge amount of source \n" + "files, where putting all generated files in the same directory would otherwise \n" + "cause performance problems for the file system. \n", + FALSE + ); + cb->addDependency("GENERATE_HTML"); ce = addEnum( - "OUTPUT_LANGUAGE", - "The OUTPUT_LANGUAGE tag is used to specify the language in which all \n" - "documentation generated by doxygen is written. Doxygen will use this \n" - "information to generate all constant output in the proper language. \n" - "The default language is English, other supported languages are: \n" - "Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, \n" - "Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en \n" - "(Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese, \n" - "Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.\n", - "English" - ); + "OUTPUT_LANGUAGE", + "The OUTPUT_LANGUAGE tag is used to specify the language in which all \n" + "documentation generated by doxygen is written. Doxygen will use this \n" + "information to generate all constant output in the proper language. \n" + "The default language is English, other supported languages are: \n" + "Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, \n" + "Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en \n" + "(Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese, \n" + "Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.\n", + "English" + ); #ifdef LANG_BR ce->addValue("Brazilian"); #endif |