summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-21 09:34:47 -0400
committerBrad King <brad.king@kitware.com>2016-06-21 09:34:47 -0400
commitc41dfdabdda20de693c9d854606511e51dbf6acc (patch)
treeb255a6a6aadfe778a314194bc1ed33fd271c1cd0
parentd38fc22132db1b82fad1ef5b8a7f5e030c71a90f (diff)
parentd3e538eabbb329dcff86ea740a056964b0e2800d (diff)
downloadcmake-c41dfdabdda20de693c9d854606511e51dbf6acc.tar.gz
Merge branch 'doc-VS_STARTUP_PROJECT-clarify' into release
-rw-r--r--Help/prop_dir/VS_STARTUP_PROJECT.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/Help/prop_dir/VS_STARTUP_PROJECT.rst b/Help/prop_dir/VS_STARTUP_PROJECT.rst
index edd4832437..04441b6218 100644
--- a/Help/prop_dir/VS_STARTUP_PROJECT.rst
+++ b/Help/prop_dir/VS_STARTUP_PROJECT.rst
@@ -3,10 +3,16 @@ VS_STARTUP_PROJECT
Specify the default startup project in a Visual Studio solution.
+The :ref:`Visual Studio Generators` create a ``.sln`` file for each directory
+whose ``CMakeLists.txt`` file calls the :command:`project` command. Set this
+property in the same directory as a :command:`project` command call (e.g. in
+the top-level ``CMakeLists.txt`` file) to specify the default startup project
+for the correpsonding solution file.
+
The property must be set to the name of an existing target. This
will cause that project to be listed first in the generated solution
file causing Visual Studio to make it the startup project if the
solution has never been opened before.
-If this property is not specified, then the "ALL_BUILD" project
+If this property is not specified, then the ``ALL_BUILD`` project
will be the default.