summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Replace http://www.cmake.org URLs with https://cmake.orgBrad King2015-09-251-1/+1
| | | | | | | The latter is now the preferred URL for visiting cmake.org with a browser. Convert using the shell code: git ls-files -z | xargs -0 sed -i 's|http://www\.cmake|https://cmake|g'
* Merge topic 'fix-try_compile-internal-argv'Brad King2015-09-251-5/+1
|\ | | | | | | | | 710bde43 cmCoreTryCompile: Fix internal argument vector construction
| * cmCoreTryCompile: Fix internal argument vector constructionBrad King2015-09-241-5/+1
| | | | | | | | | | | | | | | | | | In TryCompileCode we construct an internal argv[] vector that needs to have a fake argv[0] so our internal cmake command line looks like a real command line. Fix construction of the fake argv[0] when try_compile is called without the CMAKE_FLAGS argument. Otherwise the first internal -DVAR=val argument that we use to pass information like CMAKE_OSX_SYSROOT is ignored.
* | Merge topic 'install-directory-dest-genex'Brad King2015-09-252-1/+57
|\ \ | | | | | | | | | | | | bd189cc2 install: Allow generator expressions in DIRECTORY DESTINATION
| * | install: Allow generator expressions in DIRECTORY DESTINATIONRobert Goulet2015-09-242-1/+57
| | |
* | | Merge topic 'fix-max-path-initialization'Brad King2015-09-256-32/+26
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8bfff686 cmLocalGenerator: Compute object max path on construction. 2c2479fb cmGlobalGenerator: Create all local generators after Configure(). 194bb068 cmGlobalGenerator: Remove unused method. c5f07e05 cmGlobalGenerator: Create local generators after all makefiles configured. dd408de4 cmGlobalGenerator: Create local generator after configuring the makefile. 8a88089b cmMakefile: Create the local generator after configuring the makefile. 934aa454 Makefiles: Remove need to create local generator at configure time. 61b48e70 Makefiles: Port to cmOutputConverter.
| * | | cmLocalGenerator: Compute object max path on construction.Stephen Kelly2015-09-243-6/+4
| | | |
| * | | cmGlobalGenerator: Create all local generators after Configure().Stephen Kelly2015-09-241-1/+1
| | | |
| * | | cmGlobalGenerator: Remove unused method.Stephen Kelly2015-09-242-7/+0
| | | |
| * | | cmGlobalGenerator: Create local generators after all makefiles configured.Stephen Kelly2015-09-243-7/+15
| | | |
| * | | cmGlobalGenerator: Create local generator after configuring the makefile.Stephen Kelly2015-09-241-2/+2
| | | |
| * | | cmMakefile: Create the local generator after configuring the makefile.Stephen Kelly2015-09-241-5/+5
| | | | | | | | | | | | | | | | The local generator is not used during configure time.
| * | | Makefiles: Remove need to create local generator at configure time.Stephen Kelly2015-09-241-11/+5
| | | | | | | | | | | | | | | | This method is used during try_compile.
| * | | Makefiles: Port to cmOutputConverter.Stephen Kelly2015-09-241-1/+2
| | | |
* | | | CMake Nightly Date StampKitware Robot2015-09-251-1/+1
| |_|/ |/| |
* | | Merge topic 'install-files-dest-genex'Brad King2015-09-242-5/+26
|\ \ \ | | |/ | |/| | | | | | | | | | 69ab5f55 Tests: Cover install(FILES) with a genex DESTINATION 17aa6fd3 install: Allow generator expressions in FILES DESTINATION
| * | install: Allow generator expressions in FILES DESTINATIONRobert Goulet2015-09-232-5/+26
| |/
* | CMake Nightly Date StampKitware Robot2015-09-241-1/+1
|/
* Merge topic 'vs-target-ordering'Brad King2015-09-237-14/+26
|\ | | | | | | | | | | 40c7b461 VS: Fix rebuild with regeneration after input CMake code change (#15754) 03bfe71a VS: Refactor target ordering logic
| * VS: Fix rebuild with regeneration after input CMake code change (#15754)Brad King2015-09-221-1/+1
| | | | | | | | | | | | | | | | | | When using "cmake --build ." or "MSBuild ALL_BUILD.vcxproj" to drive the build the dependencies in the .sln file are not considered. This means that ProjectReference elements in .vcxproj files are used to order targets. We must ensure that the ZERO_CHECK target is listed as the first dependency of every target so that when it causes regeneration of the build files then MSBuild has not yet loaded the updated files.
| * VS: Refactor target ordering logicBrad King2015-09-227-14/+26
| | | | | | | | | | | | | | | | Refactor cmGlobalVisualStudioGenerator::TargetCompare to store the name of the target that should come first instead of hard-coding "ALL_BUILD". Update client sites to specify "ALL_BUILD" when ordering for .sln files and an empty string otherwise (in cases when "ALL_BUILD" should not be encountered anyway).
* | Merge topic 'cpack-package-empty-dirs'Brad King2015-09-231-1/+0
|\ \ | | | | | | | | | | | | b761e90d CPack: remove accidental changes
| * | CPack: remove accidental changesDomen Vrankar2015-09-231-1/+0
| | | | | | | | | | | | | | | Remove changes accidentally included in commit b58de9fe (CPack: allow packaging of empty directories, 2015-09-22).
* | | CMake Nightly Date StampKitware Robot2015-09-231-1/+1
| | |
* | | Merge topic 'cpack-package-empty-dirs'Brad King2015-09-223-0/+28
|\ \ \ | |/ / | | | | | | | | | | | | b58de9fe CPack: allow packaging of empty directories 47b060ae CPackDeb: allow empty directories in component packages
| * | CPack: allow packaging of empty directoriesDomen Vrankar2015-09-222-0/+26
| | |
| * | CPackDeb: allow empty directories in component packagesRaffi Enficiaud2015-09-211-0/+2
| | |
* | | Merge topic 'restrict-shlib-link-flags-to-enable-exports'Brad King2015-09-225-6/+56
|\ \ \ | | | | | | | | | | | | | | | | | | | | b15f4e9b try_compile: Propogate CMP0065 to the generated project. 9784af1b CMP0065: Restrict the use of CMAKE_SHARED_LIBRARY_LINK_<LANG>_FLAGS
| * | | try_compile: Propogate CMP0065 to the generated project.Chuck Atkins2015-09-211-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Set policy CMP0065 to the value used in the calling project. Set the the value of CMAKE_ENABLE_EXPORTS if set in the calling project to initialize the target property appropriately.
| * | | CMP0065: Restrict the use of CMAKE_SHARED_LIBRARY_LINK_<LANG>_FLAGSChuck Atkins2015-09-214-6/+46
| | | | | | | | | | | | | | | | | | | | This new policy restricts the addition of the shared library link flags to executables only when the ENABLE_EXPORTS property is set to True.
* | | | Merge topic 'fix-policy-CMP0064-version'Brad King2015-09-221-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | 402bf096 CMP0064: Fix recorded version of introduction to be 3.4
| * | | CMP0064: Fix recorded version of introduction to be 3.4Brad King2015-09-211-1/+1
| |/ / | | | | | | | | | | | | This policy was added for CMake 3.4 but accidentally recorded as 3.3. Fix this and update the RunCMake.CMP0064 test WARN case accordingly.
* | | Merge topic 'fix-windows-version-detection'Brad King2015-09-223-5/+27
|\ \ \ | |_|/ |/| | | | | | | | 17009189 Windows: Fix CMAKE_HOST_SYSTEM_VERSION on Windows >= 8 (#15674)
| * | Windows: Fix CMAKE_HOST_SYSTEM_VERSION on Windows >= 8 (#15674)Gilles Khouzam2015-09-213-5/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to GetVersionEx documentation: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724451.aspx https://msdn.microsoft.com/en-us/library/windows/desktop/dn481241.aspx we must manifest each application to explicitly declare support for each version of Windows.
* | | CMake Nightly Date StampKitware Robot2015-09-221-1/+1
| |/ |/|
* | Merge topic 'cpack-deb-checksum-on-symlinks'Brad King2015-09-211-13/+16
|\ \ | | | | | | | | | | | | | | | da295f45 CPack/Deb: checksum on symlinks release notes 7c7874c8 CPackDeb: preventing md5sum on symlinks
| * | CPackDeb: preventing md5sum on symlinksRaffi Enficiaud2015-09-181-13/+16
| |/ | | | | | | | | | | - Direct call to cmSystemTools::ComputeFileMD5 - Avoiding hashing symlinks - Tests
* | Merge topic 'fix-compatibility-mode-LOCATION'Brad King2015-09-215-9/+17
|\ \ | | | | | | | | | | | | | | | | | | 2514e426 CMP0026: Use compatibility codepath until configure is finished (#15748) b98f7712 cmGlobalGenerator: Add API for the configure step being finished. b5de2bd9 cmLocalGenerator: Simplify condition.
| * | CMP0026: Use compatibility codepath until configure is finished (#15748)Stephen Kelly2015-09-182-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use it instead of the similar cmMakefile API. It is necessary to know that the Configure step is completely done, not just that one particular cmMakefile is finished configuring. Prior to commit 611220f7 (cmTarget: Use reliable test for CMP0024 and CMP0026 OLD., 2015-07-25), this was determined by checking whether cmGeneratorTargets exist yet, which happens after the Configure step.
| * | cmGlobalGenerator: Add API for the configure step being finished.Stephen Kelly2015-09-182-0/+8
| | |
| * | cmLocalGenerator: Simplify condition.Stephen Kelly2015-09-181-1/+1
| |/ | | | | | | This API is only called after configure-time.
* | Merge topic 'ninja-refactor-msvc-deps'Brad King2015-09-213-1/+16
|\ \ | | | | | | | | | | | | | | | | | | 109a7a24 Ninja: Detect MSVC /showIncludes prefix with compiler flags (#15596) 828c05b9 Ninja: Refactor lookup of cmcldeps location c73fbda6 CMakeDetermineCompilerId: Drop unused code path
| * | Ninja: Refactor lookup of cmcldeps locationBrad King2015-09-183-1/+16
| |/ | | | | | | | | This executable comes with CMake so just compute its location in cmSystemTools instead of storing it in compiler information modules.
* | Merge topic 'ctest-custom-output-size'Brad King2015-09-213-1/+49
|\ \ | | | | | | | | | | | | | | | fd47df45 CTest: Add options to limit output of passed and failed tests 6e3151f6 CTest: Document and test custom output size settings
| * | CTest: Add options to limit output of passed and failed testsRoman Wüger2015-09-183-1/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ctest command-line options: --test-output-size-passed <n> --test-output-size-failed <n> to set the amount of test output to store in Test.xml as a command-line dashboard client.
* | | CMake Nightly Date StampKitware Robot2015-09-211-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2015-09-201-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2015-09-191-1/+1
| |/ |/|
* | Merge topic 'cmake-gui-qt5-package'Brad King2015-09-181-11/+5
|\ \ | | | | | | | | | | | | 851915a5 cmake-gui: Improve packaging of Qt5 libraries.
| * | cmake-gui: Improve packaging of Qt5 libraries.Clinton Stimpson2015-09-171-11/+5
| |/ | | | | | | | | | | | | Fixes #15685, where the right Qt5 dlls on Windows were not packaged because they were not found when relying on the PATH environment variable. Also some cleanup of code introduced in 8120e13f, but no longer needed with 678aaad1.