diff options
author | Christopher Dembia <cld72@cornell.edu> | 2015-10-21 23:10:39 -0700 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-10-22 10:31:49 -0400 |
commit | 194011b86f0d41c9f4cd10bdc3e4bf327db3d9d2 (patch) | |
tree | f6914de6d49553fad372129a47467abd27b4bef4 /Help/command/add_executable.rst | |
parent | 3187de20fd9949ab90df4651f5d1ae0d218a9afd (diff) | |
download | cmake-194011b86f0d41c9f4cd10bdc3e4bf327db3d9d2.tar.gz |
Help: Add missing parenthesis in add_executable docs
Diffstat (limited to 'Help/command/add_executable.rst')
-rw-r--r-- | Help/command/add_executable.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/command/add_executable.rst b/Help/command/add_executable.rst index 4ed10e1cff..8b3fb57729 100644 --- a/Help/command/add_executable.rst +++ b/Help/command/add_executable.rst @@ -14,7 +14,7 @@ files listed in the command invocation. The ``<name>`` corresponds to the logical target name and must be globally unique within a project. The actual file name of the executable built is constructed based on conventions of the native platform (such as ``<name>.exe`` or just -``<name>``. +``<name>``). By default the executable file will be created in the build tree directory corresponding to the source tree directory in which the |