summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Autogen: Error message tweaksSebastian Holtermann2017-02-211-18/+17
|
* Autogen: Acquire and store header extensions in Init()Sebastian Holtermann2017-02-212-61/+50
|
* Autogen: Overhaul FindMatchingHeader functionSebastian Holtermann2017-02-212-71/+83
|
* Autogen: Don't list all search paths in error messageSebastian Holtermann2017-02-211-7/+1
|
* Autogen: Indentation fixSebastian Holtermann2017-02-211-2/+1
|
* Autogen: Rename moc related variablesSebastian Holtermann2017-02-212-14/+13
|
* Autogen: Overhaul moc include list generationSebastian Holtermann2017-02-212-49/+56
|
* Autogen: Inline string generationSebastian Holtermann2017-02-191-5/+2
|
* Autogen: Synchronize variable namesSebastian Holtermann2017-02-191-54/+54
|
* Autogen: Move method declarations; Remove commentsSebastian Holtermann2017-02-192-15/+11
|
* Autogen: Rename SkipFoo variables/methods to FooSkipSebastian Holtermann2017-02-192-16/+16
|
* Autogen: Split moc options info string immediatelySebastian Holtermann2017-02-192-12/+15
|
* Autogen: Split moc compile options info string immediatelySebastian Holtermann2017-02-192-14/+12
|
* Autogen: Rename variables read from info fileSebastian Holtermann2017-02-192-12/+12
|
* Autogen: Inline settings string generation methodsSebastian Holtermann2017-02-192-41/+20
|
* Autogen: Rename settings string variablesSebastian Holtermann2017-02-192-12/+13
|
* Autogen: Make methods constSebastian Holtermann2017-02-192-12/+14
|
* cmFilePathChecksum: Make methods const useableSebastian Holtermann2017-02-192-4/+4
|
* Autogen: Add method for checksum based path generationSebastian Holtermann2017-02-192-7/+22
|
* Autogen: Use nested loops instead of code duplicationSebastian Holtermann2017-02-191-35/+28
|
* Autogen: Use cmSystemTools::Stdout/err instead of std::cout/errSebastian Holtermann2017-02-191-8/+7
|
* Autogen: LogWarning method fixSebastian Holtermann2017-02-191-2/+2
|
* Autogen: Single point of return in RccGenerateFileSebastian Holtermann2017-02-192-74/+81
|
* Autogen: Single point of return in UicGenerateFileSebastian Holtermann2017-02-191-39/+50
|
* Autogen: Single point of return in MocGenerateFileSebastian Holtermann2017-02-191-36/+45
|
* Autogen: Use FooEnabled() utility methodsSebastian Holtermann2017-02-191-8/+8
|
* Autogen: Add FooEnabled() utility methodsSebastian Holtermann2017-02-191-0/+4
|
* Autogen: Generate empty settings string for disabled featureSebastian Holtermann2017-02-191-25/+32
|
* Autogen: Simplify settings write methodSebastian Holtermann2017-02-191-9/+10
|
* Autogen: Simplify settings read methodSebastian Holtermann2017-02-191-19/+17
|
* Autogen: Rename settings key variablesSebastian Holtermann2017-02-191-9/+9
|
* Autogen: Rename settings string generation methodsSebastian Holtermann2017-02-192-9/+10
|
* Autogen: Rename settings file read/write methodsSebastian Holtermann2017-02-192-9/+8
|
* Autogen: Remove unnecessary testSebastian Holtermann2017-02-191-36/+33
|
* Autogen: Add GenerateAllAny flag test methodSebastian Holtermann2017-02-192-3/+8
|
* Autogen: Rename GenerateFooAll variables to GenerateAllFooSebastian Holtermann2017-02-192-18/+18
|
* CMake Nightly Date StampKitware Robot2017-02-191-1/+1
|
* CMake Nightly Date StampKitware Robot2017-02-181-1/+1
|
* Merge topic 'FindHDF5-fix-header-langs'Brad King2017-02-171-2/+2
|\ | | | | | | | | 96d61393 FindHDF5: Fix search for language-specific header file
| * FindHDF5: Fix search for language-specific header fileBrad King2017-02-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring in commit v3.6.0-rc1~85^2 (HDF5: Refactor the use of compiler wrappers, 2016-04-04) converted code of the form if(${LANGUAGE} MATCHES ...) to if(LANGUAGE MATCHES ...) However, `LANGUAGE` is a foreach() loop variable and not a normal variable so auto-dereference does not occur. Restore the explicit `${}` syntax and use the new name of the loop variable that has changed since then too. Fixes: #16651
* | Merge topic 'FindHDF5-include-dir-advanced'Brad King2017-02-171-1/+1
|\ \ | |/ | | | | | | 28bb68e3 FindHDF5: Restore HDF5_<LANG>_INCLUDE_DIR advanced cache entry mark
| * FindHDF5: Restore HDF5_<LANG>_INCLUDE_DIR advanced cache entry markBrad King2017-02-171-1/+1
| | | | | | | | | | | | | | | | | | Refactoring in commit v3.6.0-rc1~72^2 (HDF5: Rework component searching to correctly find HL for all bindings, 2016-05-12) renamed the language loop variable used to construct the name of `HDF5_<LANG>_INCLUDE_DIR` but forgot to update it in the `mark_as_advanced` call. Fix it now. Issue: #16651
* | Merge topic 'install_name_policy'Brad King2017-02-1727-29/+257
|\ \ | | | | | | | | | | | | | | | | | | | | | 1ba91291 Add policy CMP0068 separate install_name and RPATH settings on macOS f7b9bf41 Apple: Add BUILD_WITH_INSTALL_NAME_DIR target property 4bff2d14 Apple: Refactor support for using INSTALL_NAME_DIR. 624fb9d7 Help: Format BUILD_WITH_INSTALL_RPATH documentation
| * | Add policy CMP0068 separate install_name and RPATH settings on macOSClinton Stimpson2017-02-1422-7/+165
| | | | | | | | | | | | | | | | | | | | | | | | BUILD_WITH_INSTALL_RPATH, SKIP_BUILD_RPATH, CMAKE_SKIP_RPATH and CMAKE_SKIP_INSTALL_RPATH no longer any effect on the install name of a target on macOS. Fixes: #16589
| * | Apple: Add BUILD_WITH_INSTALL_NAME_DIR target propertyClinton Stimpson2017-02-148-0/+41
| | | | | | | | | | | | | | | This new property controls whether to apply INSTALL_NAME_DIR to the build tree. It also overrides BUILD_WITH_INSTALL_RPATH.
| * | Apple: Refactor support for using INSTALL_NAME_DIR.Clinton Stimpson2017-02-142-20/+49
| | |
| * | Help: Format BUILD_WITH_INSTALL_RPATH documentationBrad King2017-02-141-7/+7
| | |
* | | Merge topic 'bison3'Brad King2017-02-176-2788/+3072
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 761ea205 cmCommandArgumentParser: reformat grammar 1728b9c0 cmDependsJavaParser: Port to bison 3 fe75e140 cmCommandArgumentParser: Port to bison 3
| * | | cmCommandArgumentParser: reformat grammarDaniel Pfeifer2017-02-162-197/+156
| | | |
| * | | cmDependsJavaParser: Port to bison 3Daniel Pfeifer2017-02-163-1919/+2335
| | | | | | | | | | | | | | | | | | | | Use %-directives to specify the scanner/lexer arguments and update the yyerror signature. Reduce the list of post-bison modifications needed.