diff options
-rw-r--r-- | Help/manual/cmake-developer.7.rst | 11 | ||||
-rw-r--r-- | Source/CMakeVersion.cmake | 2 |
2 files changed, 1 insertions, 12 deletions
diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst index 3b9b921..682ce47 100644 --- a/Help/manual/cmake-developer.7.rst +++ b/Help/manual/cmake-developer.7.rst @@ -1093,17 +1093,6 @@ The ``RELEASE`` variant should be listed first in the property so that that variant is chosen if the user uses a configuration which is not an exact match for any listed ``IMPORTED_CONFIGURATIONS``. -We should also provide some information about the package, such as where to -download it. - -.. code-block:: cmake - - include(FeatureSummary) - set_package_properties(Foo PROPERTIES - URL "http://www.foo.example.com/" - DESCRIPTION "A library for doing useful things" - ) - Most of the cache variables should be hidden in the ``ccmake`` interface unless the user explicitly asks to edit them. diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 9dd227c..32a15e0 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,5 +1,5 @@ # CMake version number components. set(CMake_VERSION_MAJOR 3) set(CMake_VERSION_MINOR 1) -set(CMake_VERSION_PATCH 20141208) +set(CMake_VERSION_PATCH 20141209) #set(CMake_VERSION_RC 1) |