diff options
author | Brad King <brad.king@kitware.com> | 2014-01-22 13:47:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-01-22 13:47:59 (GMT) |
commit | 0bd4157886e4aa28c7c77d1e2b8c92404ace2fc9 (patch) | |
tree | 07b50604d078b393ccc2d2f3a1339cd52876e86d /Help | |
parent | d8d3e9241e73825596c3a0c52823b73cca29011d (diff) | |
parent | 82d431750389e521f021772d5d01337b6dc8c0de (diff) | |
download | CMake-0bd4157886e4aa28c7c77d1e2b8c92404ace2fc9.zip CMake-0bd4157886e4aa28c7c77d1e2b8c92404ace2fc9.tar.gz CMake-0bd4157886e4aa28c7c77d1e2b8c92404ace2fc9.tar.bz2 |
Merge topic 'cmake-rerun-depends'
82d43175 Allow projects to specify extra inputs to CMake
1ef444d6 Add test case to verify CMake does not re-run on first build
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-properties.7.rst | 1 | ||||
-rw-r--r-- | Help/prop_dir/CMAKE_CONFIGURE_DEPENDS.rst | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Help/manual/cmake-properties.7.rst b/Help/manual/cmake-properties.7.rst index c0ec0fe..d315fcb 100644 --- a/Help/manual/cmake-properties.7.rst +++ b/Help/manual/cmake-properties.7.rst @@ -48,6 +48,7 @@ Properties on Directories /prop_dir/ADDITIONAL_MAKE_CLEAN_FILES /prop_dir/CACHE_VARIABLES /prop_dir/CLEAN_NO_CUSTOM + /prop_dir/CMAKE_CONFIGURE_DEPENDS /prop_dir/COMPILE_DEFINITIONS_CONFIG /prop_dir/COMPILE_DEFINITIONS /prop_dir/COMPILE_OPTIONS diff --git a/Help/prop_dir/CMAKE_CONFIGURE_DEPENDS.rst b/Help/prop_dir/CMAKE_CONFIGURE_DEPENDS.rst new file mode 100644 index 0000000..b1aef19 --- /dev/null +++ b/Help/prop_dir/CMAKE_CONFIGURE_DEPENDS.rst @@ -0,0 +1,9 @@ +CMAKE_CONFIGURE_DEPENDS +----------------------- + +Tell CMake about additional input files to the configuration process. +If any named file is modified the build system will re-run CMake to +re-configure the file and generate the build system again. + +Specify files as a semicolon-separated list of paths. Relative paths +are interpreted as relative to the current source directory. |