QtDialog: Clean up and document -S and -B options

This commit is contained in:
Kyle Edwards
2019-01-25 10:53:18 -05:00
parent 40628b2519
commit ad0853b3d4
3 changed files with 57 additions and 12 deletions
+9
View File
@@ -10,6 +10,7 @@ Synopsis
cmake-gui [<options>]
cmake-gui [<options>] {<path-to-source> | <path-to-existing-build>}
cmake-gui [<options>] -S <path-to-source> -B <path-to-build>
Description
===========
@@ -27,6 +28,14 @@ native tool on their platform.
Options
=======
``-S <path-to-source>``
Path to root directory of the CMake project to build.
``-B <path-to-build>``
Path to directory which CMake will use as the root of build directory.
If the directory doesn't already exist CMake will make it.
.. include:: OPTIONS_HELP.txt
See Also
+5
View File
@@ -0,0 +1,5 @@
cmake-gui-s-b
-------------
* The :manual:`cmake-gui(1)` dialog gained new ``-S`` and ``-B`` arguments to
explicitly specify source and build directories.