summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-11-06 17:49:08 (GMT)
committerGitHub <noreply@github.com>2020-11-06 17:49:08 (GMT)
commitb26f86249c751a540feed08adc331c25ef0a2fe8 (patch)
treee692b9eadacb470ff51f96037b7d55d91b7388f4
parent62d80023d73afaf117a7ce55aaecdf84889fb723 (diff)
parent819529338768bf791a58416fc67d291cf4271087 (diff)
downloadDoxygen-b26f86249c751a540feed08adc331c25ef0a2fe8.zip
Doxygen-b26f86249c751a540feed08adc331c25ef0a2fe8.tar.gz
Doxygen-b26f86249c751a540feed08adc331c25ef0a2fe8.tar.bz2
Merge pull request #8162 from albert-github/feature/bug_windows_shell
Syntax for faq about use in Windows Powershell
-rw-r--r--doc/faq.doc7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/faq.doc b/doc/faq.doc
index 8a3aee8..e460d4a 100644
--- a/doc/faq.doc
+++ b/doc/faq.doc
@@ -266,12 +266,17 @@ in a configuration file from the command line (assuming a UNIX like environment)
( cat Doxyfile ; echo "PROJECT_NUMBER=1.0" ) | doxygen -
\endverbatim
-For Windows the following would do the same:
+For Windows command line the following would do the same:
\verbatim
( type Doxyfile & echo PROJECT_NUMBER=1.0 ) | doxygen.exe -
\endverbatim
+For Windows Powershell (checked with version 5.1) the following would do the same:
+\verbatim
+&{ type Doxyfile ; echo "PROJECT_NUMBER=1.0" } | doxygen -
+\endverbatim
+
If multiple options with the same name are specified then doxygen will use
the last one. To append to an existing option you can use the += operator.