summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cmGeneratorTarget: Move GetInstallNameDir* from cmTarget.Stephen Kelly2015-08-0516-94/+100
|
* cmGeneratorTarget: Move GetMacContentDirectory from cmTarget.Stephen Kelly2015-08-055-50/+53
|
* cmGeneratorTarget: Move GetFullNameComponents from cmTarget.Stephen Kelly2015-08-056-15/+17
|
* cmGeneratorTarget: Move IsChrPathUsed from cmTarget.Stephen Kelly2015-08-056-75/+78
|
* cmGeneratorTarget: Move NeedRelinkBeforeInstall from cmTarget.Stephen Kelly2015-08-059-78/+80
|
* cmGeneratorTarget: Move GetPDBName from cmTarget.Stephen Kelly2015-08-057-39/+40
|
* cmGeneratorTarget: Move GetCompilePDBPath from cmTarget.Stephen Kelly2015-08-058-53/+57
|
* cmGeneratorTarget: Move HasSOName from cmTarget.Stephen Kelly2015-08-058-19/+20
|
* cmGeneratorTarget: Move GetLibraryNames from cmTarget.Stephen Kelly2015-08-059-109/+107
|
* cmGeneratorTarget: Move GetExecutableNames from cmTarget.Stephen Kelly2015-08-059-80/+81
|
* cmGeneratorTarget: Move GetLinkImplementationClosureStephen Kelly2015-08-054-60/+63
|
* cmGeneratorTarget: Move ReportPropertyOrigin from cmTarget.Stephen Kelly2015-08-054-56/+57
|
* cmGeneratorTarget: Make CompatibleType enum private again.Stephen Kelly2015-08-052-44/+44
|
* cmGeneratorTarget: Move LinkInterfaceDependent methods from cmTarget.Stephen Kelly2015-08-057-426/+433
|
* cmGeneratorTarget: Port internal API to cmGeneratorTarget.Stephen Kelly2015-08-051-13/+15
|
* cmGeneratorTarget: Move CheckPropertyCompatibility from cmTarget.Stephen Kelly2015-08-054-267/+268
|
* cmGeneratorTarget: Move GetLinkInformation from cmTargetStephen Kelly2015-08-0514-85/+72
|
* Export: Port more API to cmGeneratorTarget.Stephen Kelly2015-08-054-10/+17
|
* cmGeneratorTarget: Move IsLinkInterfaceDependent* from cmTarget.Stephen Kelly2015-08-055-119/+122
|
* cmGeneratorTarget: Move GetAutoUicOptions from cmTarget.Stephen Kelly2015-08-055-29/+33
|
* cmGeneratorTarget: Move GetSOName from cmTarget..Stephen Kelly2015-08-058-70/+73
|
* cmExportInstallFileGenerator: Simplify local generator access.Stephen Kelly2015-08-041-1/+1
|
* cmGlobalNinjaGenerator: Simplify usage of API.Stephen Kelly2015-08-041-3/+1
|
* Merge topic 'update-kwsys'Brad King2015-08-043-6/+48
|\ | | | | | | | | | | 3da43137 Merge branch 'upstream-kwsys' into update-kwsys 9a59ae5c KWSys 2015-08-03 (dad68c33)
| * Merge branch 'upstream-kwsys' into update-kwsysBrad King2015-08-033-6/+48
| |\
| | * KWSys 2015-08-03 (dad68c33)KWSys Robot2015-08-033-6/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ dad68c33 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' f63febb7..dad68c33 James Johnston (1): dad68c33 Encoding: Fix undefined behavior if out of memory. Jean-Christophe Fillion-Robin (2): e5c23738 SystemTools: Fix DetectFileType failure on missing file 6d83c113 SystemTools: Fix DetectFileType failure on directory Sebastian Schuberth (1): 4db8e69f SystemTools: Implement FileIsSymlink on Windows
* | | Merge topic 'doc-ninja-rule-launchers'Brad King2015-08-043-12/+18
|\ \ \ | | | | | | | | | | | | | | | | d951f542 Help: Refine RULE_LAUNCH_{COMPILE,CUSTOM,LINK} global property docs
| * | | Help: Refine RULE_LAUNCH_{COMPILE,CUSTOM,LINK} global property docsBrad King2015-08-033-12/+18
| |/ / | | | | | | | | | | | | Link to the generators that implement these properties. Explain in more detail why other generators ignore them.
* | | Merge topic 'cmake-W-options'Brad King2015-08-042-6/+6
|\ \ \ | | | | | | | | | | | | | | | | 975426ce cmake: Do not treat developer warnings as errors by default in scripts
| * | | cmake: Do not treat developer warnings as errors by default in scriptsBrad King2015-08-032-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The logic in commit c96fe0b4 (cmake: Add -W options to control deprecation warnings and errors, 2015-07-28) accidentally enables errors on warnings by default in scripts because there is no initialization of CMAKE_SUPPRESS_DEVELOPER_ERRORS to TRUE. Rename internal CMAKE_SUPPRESS_DEVELOPER_ERRORS cache entry to CMAKE_ERROR_DEVELOPER_WARNINGS. Fix the logic in the message() command to treat AUTHOR_WARNING as an error only if the option is explicitly enabled.
* | | | CMake Nightly Date StampKitware Robot2015-08-041-1/+1
| |/ / |/| |
* | | Merge topic 'if-test'Brad King2015-08-0319-4/+105
|\ \ \ | | | | | | | | | | | | | | | | | | | | 14e49ed1 if: Add "TEST <test>" condition 623dcc85 ExternalProject: Avoid if() auto-dereference of a "TEST" variable
| * | | if: Add "TEST <test>" conditionMatt McCormick2015-08-0318-1/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if(TEST TestNameThatExists) will return true if a test with the name TestNameThatExists has been added with add_test. The syntax is similar to if(TARGET TargetName). Since use of "TEST" as an argument to if() could previously be interpreted as a non-keyword argument, add policy CMP0064 to treat it as a keyword as NEW behavior.
| * | | ExternalProject: Avoid if() auto-dereference of a "TEST" variableMatt McCormick2015-08-031-3/+3
| | | | | | | | | | | | | | | | Exposed by CMP0054 warnings.
* | | | Merge topic 'GetPrerequisites-updates'Brad King2015-08-031-0/+38
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 5d0a8b1a GetPrerequisites: Optionally filter "objdump" output for speed afb674ab GetPrerequisites: Add error checks for execute_process() calls
| * | | | GetPrerequisites: Optionally filter "objdump" output for speedBill Somerville2015-07-311-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As dumpbin.exe is no longer reliable for gcc libraries on MinGW because it crashes on many common libraries like libgcc_s and libgfortran it is now necessary too resort to using objdump for DLL dependency walking. Using objdump has a secondary problem in that it generates a lot of output for large libraries and causes fixup_bundle() to take many minutes to process what took fractions of a second with "dumpbin.exe /dependents". Add a 'grep' pre-filter in the execute_process() command pipeline to reduce this output to a minimum for a several orders of magnitude speed up. If grep is not available just use the full output. As there does not seem to be a reliable way of detecting MinGW, callers of fixup_bundle() may have to set the variable gp_tool to "objdump" if dumpbin.exe is installed on the build machine to stop it using the broken MS dumpbin.exe for library dependency walking.
| * | | | GetPrerequisites: Add error checks for execute_process() callsBill Somerville2015-07-311-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | Add return status checks to external command invocations so that they do not fail silently producing incomplete install packages.
* | | | | Merge topic 'FindMPI-drop-GetPrerequisites'Brad King2015-08-031-5/+3
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | 1c46b6ae FindMPI: Drop unnecessary and incorrect use of GetPrerequisites
| * | | | FindMPI: Drop unnecessary and incorrect use of GetPrerequisitesBrad King2015-07-311-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit v2.8.5~121^2~2 (FindMPI: Handle multiple languages, 2010-12-29) we called the GetPrerequisites is_file_executable function but passed the name of a CMake variable instead of its value. Therefore the function has always failed and caused the search for the compiler name to run even with an absolute path. Switch to using if(IS_ABSOLUTE) instead and drop use of GetPrerequisites.
* | | | | Merge topic 'fix-windows-version-detection'Brad King2015-08-031-10/+46
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | d4736d53 Windows: Fix CMAKE_HOST_SYSTEM_VERSION on Windows >= 8.1 (#15674)
| * | | | | Windows: Fix CMAKE_HOST_SYSTEM_VERSION on Windows >= 8.1 (#15674)Brad King2015-07-311-10/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The GetVersionEx API is deprecated, so try RtlGetVersion first. Co-Author: Christian Maaser
* | | | | | Merge topic 'fix-xcode-quoting'Brad King2015-08-031-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | f7a9ed7e Xcode: Quote strings containing a tilde (#15672)
| * | | | | | Xcode: Quote strings containing a tilde (#15672)Gregor Jasny2015-07-311-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit v3.3.0-rc1~183^2 (Xcode: Refine quoting rules for Strings, 2015-04-09) we no longer quote strings containing a period ('.'). However, file names like "icon29x29~ipad.png" still need quoting because they contain a tilde ('~'). Add tilde to our explicit list of characters that need quoting because such file names will no longer happen to be quoted because they contain a period.
* | | | | | Merge topic 'update-kwsys'Brad King2015-08-038-204/+1051
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | da98b896 Tests: In CTestTest2 skip the kwsys.testProcess-10 test that leaks 129640f2 CTestCustom: Ignore kwsys.testProcess-10 for MemCheck as KWSys does d0915bc8 Merge branch 'upstream-kwsys' into update-kwsys 1feafc64 KWSys 2015-07-30 (f63febb7)
| * | | | | | Tests: In CTestTest2 skip the kwsys.testProcess-10 test that leaksBrad King2015-07-311-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test intentionally leaks memory so KWSys excludes it from MemCheck. However, when CTestTest2 runs under our own MemCheck then valgrind may recursively check tests run by ctest_test() calls in our test.cmake script. Teach these calls to exluce testProcess-10 too. Also read the KWSys CTestCustom.cmake file so ctest_memcheck() will ignore the test too.
| * | | | | | CTestCustom: Ignore kwsys.testProcess-10 for MemCheck as KWSys doesBrad King2015-07-311-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test covers exceptional behavior that leaks memory, so ignore it for dynamic analysis runs.
| * | | | | | Merge branch 'upstream-kwsys' into update-kwsysBrad King2015-07-316-200/+1038
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | * | | | | KWSys 2015-07-30 (f63febb7)KWSys Robot2015-07-316-200/+1038
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ f63febb7 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' c9336bcf..f63febb7 Brad King (1): 83b4a6b8 Process: Fix conversion warning in testProcess.c James Johnston (7): 4cd8846c Process: Remove trailing whitespace in ProcessUNIX.c b1c44c58 Process: Refactor sleeping code in testProcess.c. faff2ab0 Process: Wait for children to terminate on Ctrl+C. ef517b19 Process: Added initial support for process groups. 906c2cae Process: Added test cases for testing Ctrl+C and process groups. 52874e6a Process: Fix leaked file descriptor in ProcessUNIX f63febb7 Process: Fix error message for startup failure on Windows
* | | | | | | CMake Nightly Date StampKitware Robot2015-08-031-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2015-08-021-1/+1
| | | | | | |