[cmake-commits] hoffman committed CMakeLists.txt 1.97.2.45 1.97.2.46
ChangeLog.manual 1.1.8.49 1.1.8.50 MacInstallReadme.txt NONE 1.1.2.1
cmake-commits at cmake.org
cmake-commits at cmake.org
Fri Dec 28 13:20:51 EST 2007
Update of /cvsroot/CMake/CMake
In directory public:/mounts/ram/cvs-serv1810
Modified Files:
Tag: CMake-2-4
CMakeLists.txt ChangeLog.manual
Added Files:
Tag: CMake-2-4
MacInstallReadme.txt
Log Message:
ENH: add some descriptive text for mac installer
Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/CMakeLists.txt,v
retrieving revision 1.97.2.45
retrieving revision 1.97.2.46
diff -u -d -r1.97.2.45 -r1.97.2.46
--- CMakeLists.txt 28 Dec 2007 14:34:55 -0000 1.97.2.45
+++ CMakeLists.txt 28 Dec 2007 18:20:49 -0000 1.97.2.46
@@ -7,7 +7,7 @@
SET(CMake_VERSION_MINOR 4)
SET(CMake_VERSION_PATCH 8)
# for an actual release this should not be defined
-SET(CMake_VERSION_RC 8)
+SET(CMake_VERSION_RC 9)
SET(CMake_VERSION "${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}")
SET(CMake_VERSION_FULL "${CMake_VERSION}.${CMake_VERSION_PATCH}")
@@ -351,6 +351,9 @@
SET(CPACK_PACKAGE_VENDOR "Kitware")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/Copyright.txt")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/Copyright.txt")
+ IF(APPLE)
+ SET(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/MacInstallReadme.txt")
+ ENDIF(APPLE)
SET(CPACK_PACKAGE_VERSION_MAJOR "${CMake_VERSION_MAJOR}")
SET(CPACK_PACKAGE_VERSION_MINOR "${CMake_VERSION_MINOR}")
SET(CPACK_PACKAGE_VERSION_PATCH "${CMake_VERSION_PATCH}")
Index: ChangeLog.manual
===================================================================
RCS file: /cvsroot/CMake/CMake/Attic/ChangeLog.manual,v
retrieving revision 1.1.8.49
retrieving revision 1.1.8.50
diff -u -d -r1.1.8.49 -r1.1.8.50
--- ChangeLog.manual 28 Dec 2007 14:49:49 -0000 1.1.8.49
+++ ChangeLog.manual 28 Dec 2007 18:20:49 -0000 1.1.8.50
@@ -1,3 +1,5 @@
+Changes in CMake 2.4.8 RC 9
+* add some descriptive text to the mac installer
Changes in CMake 2.4.8 RC 8
* Add ability to select install location for mac
* Add list(FIND) because it is used in new FindQt4.cmake
--- NEW FILE: MacInstallReadme.txt ---
DESCRIPTION
===========
This is an installer created using CPack (http://www.cmake.org). CMake is a UNIX command line tool. On the Select a Destination page of the installer the destination folder will be empty, however, the default installation folder is actually /usr. The installer will create files in /usr/bin, /usr/doc, /usr/man, /usr/share. If you choose a different folder for the install, then the install tree will be in that folder under but still in the sub folder usr, your PATH will not be modified. If you want to find CMake from the command line, you will have to modify your PATH to include the DESTINATION/usr/bin, where DESTINATION is the folder you choose to install into. As long as bin, doc, man, and share are all share the same root folder they can be moved after installation.
More information about the Cmake-commits
mailing list