summaryrefslogtreecommitdiffstats
path: root/Help/release
Commit message (Collapse)AuthorAgeFilesLines
* InstallRequiredSystemLibraries: Add option to specify install COMPONENTJohan Andruejol2015-03-031-0/+6
| | | | | | | | Previously the module did not support projects using installation components because install(PROGRAMS) was never called with COMPONENT. Add an option to specify the COMPONENT so that projects doing this do not have to resort to using CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP and writing the install rule by hand.
* ExternalData: Add support for custom algorithm-to-URL mappingBrad King2015-02-251-0/+8
| | | | | | | | | Allow URL templates to contain a %(algo:<key>) placeholder that is replaced by mapping the canonical hash algorithm name through a map defined by the <key>. Extend the Module.ExternalData test to cover the behavior. Extend the RunCMake.ExternalData test to cover error cases.
* Merge topic 'wix-shortcut-properties'Brad King2015-02-231-0/+9
|\ | | | | | | | | | | | | | | | | | | 6cc01c14 CPackWIX: Add release notes for the wix-shortcut-properties topic. 135febf0 CPackWIX: Enhance CMake CPack WIX generated installer. e6731f48 CPackWIX: Add new CPACK_STARTUP_SHORTCUTS property. 279605f5 CPackWIX: Add installed file properties for the creation of shortcuts. 53d7daff CPackWIX: Refactor start menu and desktop shortcut creation. dc0f3fb4 CPackWIX: Explicitly list CPack WIX headers for IDE convenience.
| * CPackWIX: Add release notes for the wix-shortcut-properties topic.Nils Gladitz2015-02-231-0/+9
| |
* | Merge topic 'rpm_package_architecture'Brad King2015-02-231-0/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | b6f94e6b Help: Add notes for topic 'rpm_package_architecture' f174b919 Tests: CpackRPM test component architecture 3aa9f89d CPackRPM: Support rpm architecture in components 761562fe CPackRPM: Fix CPACK_RPM_PACKAGE_ARCHITECTURE
| * | Help: Add notes for topic 'rpm_package_architecture'Brad King2015-02-231-0/+6
| |/
* | Merge topic 'private-FindJsonCpp'Brad King2015-02-231-3/+0
|\ \ | |/ |/| | | | | | | a41d621d bootstrap: Add --(no-)system-jsoncpp options a5768442 FindJsonCpp: Drop new module due to upstream jsoncpp providing package
| * FindJsonCpp: Drop new module due to upstream jsoncpp providing packageBrad King2015-02-201-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since jsoncpp 0.7.0 (2014-11-20) the upstream may provide a CMake package configuration file such that find_package(jsoncpp) will find a jsoncppConfig.cmake file. In order to avoid conflicting with this (especially on case-insensitive filesystems), and since we always prefer projects to provide package config files (that they maintain), it is better to not provide FindJsonCpp publicly. Move FindJsonCpp into a private source directory that is not installed so that we can still use it for building CMake itself. Reported-by: Ryan Pavlik <ryan.pavlik@gmail.com>
* | Merge topic 'find-command-prefix-from-PATH'Brad King2015-02-201-0/+6
|\ \ | | | | | | | | | | | | ffc06c12 Teach find_(library|file|path) to get prefixes from PATH (#15370)
| * | Teach find_(library|file|path) to get prefixes from PATH (#15370)Brad King2015-02-191-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | The find_package command already knows how to compute installation prefixes from PATH. Use the same approach to establish prefixes for find_library, find_file, and find_path to use to look in directories like "<prefix>/lib[/<arch>]" and "<prefix>/include" for libraries and headers. This will reduce the amount of configuration end users need to do to establish a work environment rooted under a specific prefix.
* | | Merge topic 'mingw-no-find_library-dll'Brad King2015-02-191-0/+8
|\ \ \ | | | | | | | | | | | | | | | | a0f17fbe Windows-GNU: Do not tell find_library to treat '.dll' as linkable
| * | | Windows-GNU: Do not tell find_library to treat '.dll' as linkableBrad King2015-02-181-0/+8
| |/ / | | | | | | | | | | | | Modern software distributions always use a separate ".dll.a" or ".lib" import library for linking.
* | | Merge topic 'compiler-version-Fortran'Brad King2015-02-191-0/+6
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4cf3589e Help: Add notes for topic 'compiler-version-Fortran' f611406f Fortran: Test that CMAKE_Fortran_COMPILER_VERSION is set (#15372) c6e1f464 Fortran: Detect G95 compiler version 0033faac Fortran: Detect PGI compiler version 302d47b1 Fortran: Detect XL and VisualAge compiler versions 8c8b77a5 Fortran: Detect GNU compiler version 49562a77 Fortran: Detect PathScale compiler version aa77b631 Fortran: Detect SunPro compiler version 2e09c423 Fortran: Detect Intel compiler version e6ebc814 Fortran: Add infrastructure to detect compiler version (#15372)
| * | Help: Add notes for topic 'compiler-version-Fortran'Brad King2015-02-191-0/+6
| | |
* | | VS: Use $(ConfigurationName) as CMAKE_CFG_INTDIR in VS 7, 8, 9Brad King2015-02-161-0/+10
|/ / | | | | | | | | | | | | | | | | This will allow us to use a value other than just the config name for the project OutputDirectory setting used for $(OutDir). Also use $(ConfigurationName) instead of $(OutDir) for the link directory configuration suffix since that is a hard-coded instance of a use case for CMAKE_CFG_INTDIR.
* | Merge topic 'doc-3.2-relnotes-fixup'Brad King2015-02-131-6/+6
|\ \ | | | | | | | | | | | | 6d19ef9b Help: In 3.2 relnotes move OpenGL/X11 to deprecated/removed section
| * | Help: In 3.2 relnotes move OpenGL/X11 to deprecated/removed sectionBrad King2015-02-131-6/+6
| | | | | | | | | | | | It is a possibly incompatible change.
* | | Xcode: Teach XCODE_ATTRIBUTE target properties about generator expressionsGregor Jasny2015-02-121-0/+5
| | | | | | | | | | | | Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | install: Allow generator expressions in TARGETS DESTINATION (#14317)Brad King2015-02-111-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will allow per-config destinations for targets in EXPORT sets. Using multiple install(TARGETS) with separate CONFIGURATIONS is rejected as a target appearing more than once in an export set. Now instead one can write install(TARGETS foo EXPORT exp DESTINATION lib/$<CONFIG>) to get a single logical membership of the target in the export set while still having a per-config destination.
* | | Merge topic 'export-interface-source-files'Brad King2015-02-111-0/+6
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f7e33820 Add release notes for export-interface-source-files. 6da65b39 Allow export of targets with INTERFACE_SOURCES. 736bcb96 Tests: Move IfacePaths test stderr files. d9f8390d Tests: Run IfacePaths tests with a parameter. cc152094 Tests: Split part of include_directories test to a generic location.
| * | | Add release notes for export-interface-source-files.Stephen Kelly2015-02-101-0/+6
| | | |
* | | | Merge topic 'makefile-progress-improvements'Brad King2015-02-101-0/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 63668954 Help: Add notes for topic 'makefile-progress-improvements' ae775fe8 Makefile: Change link step message color to bold green 7bb50e4a Makefile: Add progress to link step messages c6ada827 Makefile: Print all color escape sequences before newline 8521fdf5 Makefile: Fix output during parallel builds (#12991) 69ac6d27 bootstrap: Enable color Makefile output
| * | | | Help: Add notes for topic 'makefile-progress-improvements'Brad King2015-02-071-0/+7
| |/ / /
* | | | Merge topic 'add-CheckFortranCompilerFlag'Brad King2015-02-101-0/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1814cf74 Help: Add notes for topic 'add-CheckFortranCompilerFlag' 54e900ab CheckFortranCompilerFlag: Add test case 393a45e2 CheckFortranCompilerFlag: Add module to check Fortran flag existence
| * | | | Help: Add notes for topic 'add-CheckFortranCompilerFlag'Brad King2015-02-051-0/+6
| |/ / /
* | | | Help: Add notes for topic 'FindBoost-per-config-libraries'Brad King2015-02-051-0/+5
|/ / /
* | | Begin post-3.2 developmentBrad King2015-02-052-0/+9
| |/ |/|
* | Help: Drop development topic notes to prepare releaseBrad King2015-02-052-9/+0
|/ | | | | Release versions do not have the development topic section of the CMake Release Notes index page.
* Help: Rename 3.x.0 release notes to 3.xBrad King2015-02-054-12/+12
| | | | | | | | | | | | | | In commit v3.0.0-rc1~9 (Help: Rename 3.0 release notes to 3.0.0, 2014-02-19) we anticipated the possibility of bugfix-only release notes. However, in practice we have no release notes for bug fix releases because we do not cover bug fixes in release notes at all, only new features. Instead we've been updating the feature-level release notes document in bug fix releases, treating errors in the document as bugs. It makes more sense to maintain release notes at the feature-release level, so rename the documents accordingly. Also update the document titles and intro text to refer only to feature versions and not bugfix versions.
* Help: Add 3.2 release note for AUTORCC dependency trackingStephen Kelly2015-02-051-0/+4
|
* Help: Add 3.2 release notes for file(GENERATE) featuresStephen Kelly2015-02-051-0/+7
|
* Help: Organize and revise 3.2 release notesBrad King2015-02-051-154/+174
| | | | | | | | Add section headers similar to the 3.1 release notes and move each individual bullet into an appropriate section. Revise and consolidate some bullets covering related areas. Co-Author: Stephen Kelly <steveire@gmail.com>
* Help: Consolidate 3.2 release notesBrad King2015-02-0552-341/+250
| | | | | | | | | | | | | | Move all development release notes into a new version-specific document: tail -q -n +3 Help/release/dev/* > Help/release/3.2.0.rst git rm -- Help/release/dev/* except the sample topic: git checkout HEAD -- Help/release/dev/0-sample-topic.rst Reference the new document from the release notes index document. Add a title and intro sentence to the new document by hand.
* Merge topic 'CTestCoverageCollectGCOV-refinements'Brad King2015-02-041-0/+6
|\ | | | | | | | | | | | | | | | | 809a5a5e Help: Add notes for topic 'CTestCoverageCollectGCOV-refinements' 03c0812c CTestCoverageCollectGCOV: Fix handling of international characters 8caa4e72 CTestCoverageCollectGCOV: Add test case 5c828cc8 CTestCoverageCollectGCOV: Allow custom flags to gcov 30cb628e CTestCoverageCollectGCOV: Fix handling of large file counts
| * Help: Add notes for topic 'CTestCoverageCollectGCOV-refinements'Brad King2015-02-041-0/+6
| |
* | Merge topic 'rpm_multi_prefix'Brad King2015-02-031-0/+11
|\ \ | | | | | | | | | | | | 3ec02547 CPackRPM: Allow multiple path relocation prefixes for one package
| * | CPackRPM: Allow multiple path relocation prefixes for one packageDomen Vrankar2015-01-291-0/+11
| | |
* | | Features: Record for MSVC 2010-2015Robert Maynard2015-01-301-0/+5
| | | | | | | | | | | | | | | | | | | | | Also, in WCDH add MSVC Compatibility for cxx_align{of,as}. Co-Author: Stephen Kelly <steveire@gmail.com> Co-Author: Brad King <brad.king@kitware.com>
* | | Merge topic 'xcode-revise-make-program'Brad King2015-01-291-0/+6
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | ab9fa54d Xcode: Switch to internal CMAKE_MAKE_PROGRAM lookup by generator (#15324) 11e2e6ca Xcode: Select make program at build time e4055a61 Xcode: Add internal API to find xcodebuild
| * | | Xcode: Switch to internal CMAKE_MAKE_PROGRAM lookup by generator (#15324)Brad King2015-01-291-0/+6
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "cmakexbuild" wrapper is not needed for Xcode 4 and above, and the path to it may change when CMake moves. Avoid storing a specific path to a build program in CMakeCache.txt and instead compute the value for CMAKE_MAKE_PROGRAM on demand. However, if a user does set the value explicitly then honor it. This does for Xcode what commit v3.0.0-rc1~260^2~4 (VS: Switch to internal CMAKE_MAKE_PROGRAM lookup by generators, 2013-11-15) did for Visual Studio generators.
* | | VS: Add source file property to set extra hlsl shader flagsRobert Goulet2015-01-281-0/+5
|/ / | | | | | | | | Create a VS_SHADER_FLAGS source file property so that we can set all other Visual Studio .hlsl shader file compilation flags.
* | Merge topic 'file-strings-utf-16'Brad King2015-01-271-0/+5
|\ \ | | | | | | | | | | | | 1f77a700 file: Teach STRINGS to support UTF-16 and UTF-32 encodings
| * | file: Teach STRINGS to support UTF-16 and UTF-32 encodingsJustin Borodinsky2015-01-271-0/+5
| | |
* | | Merge topic 'cmake-E-tar-files-from'Brad King2015-01-271-0/+6
|\ \ \ | | | | | | | | | | | | | | | | 44fd71de cmake: Teach "-E tar" command a "--files-from=" option
| * | | cmake: Teach "-E tar" command a "--files-from=" optionBrad King2015-01-261-0/+6
| |/ / | | | | | | | | | | | | | | | Read file names from the lines of a specified file. Reject input lines starting in '-' to leave room for option parsing to be added later. Add just '--add-file=' now to allow files starting in '-' to be specified.
* | | Merge topic 'cmake-builtin-targets-use-ninja-terminal'Brad King2015-01-271-1/+3
|\ \ \ | |/ / |/| | | | | | | | bbffaa0e Configure some CMake-provided targets with USES_TERMINAL (#14915)
| * | Configure some CMake-provided targets with USES_TERMINAL (#14915)Sylvain Joubert2015-01-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make them use the 'console' pool with the Ninja generator. Impacted targets are: - Built-in targets: install, install/local, install/strip, tests, package, package_source, rebuild_cache - Targets provided by the CTestTargets module: Nightly, Continuous, Experimental, and all their variants (*Start, *Configure, ...)
* | | Merge topic 'try-run-link-libraries'Brad King2015-01-261-0/+5
|\ \ \ | |/ / |/| | | | | | | | | | | | | | d0adcccb try_run: Add tests for LINK_LIBRARIES with mock libraries. 223c5cb7 try_run: Add test for bad link libraries. e2b1f058 try_run: Add support for LINK_LIBRARIES option.
| * | try_run: Add support for LINK_LIBRARIES option.Matt McCormick2015-01-261-0/+5
| |/ | | | | | | | | | | | | | | Most functionality is already implemented in Source/cmCoreTryCompile.{h,cxx}. Document and improve argument parsing. This functionality is already being used by a number of modules, like CheckCSourceCompiles.cmake, but it is not documented.
* | Merge topic 'FindCUDA-cusolver'Brad King2015-01-261-0/+5
|\ \ | | | | | | | | | | | | d5d3d0c9 Help: Add notes for topic 'FindCUDA-cusolver'