summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* cmGeneratedFileStream: Use ``std::string const&`` instead of ``const char*``Sebastian Holtermann2018-08-072-18/+19
|
* Merge topic 'productbuild-merge-output'Craig Scott2018-08-071-2/+2
|\ | | | | | | | | | | | | 496d22b8cc productbuild: Capture stderr too in CPackProductBuild logs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2257
| * productbuild: Capture stderr too in CPackProductBuild logsMuhammad Ismail Soboute2018-08-061-2/+2
| | | | | | | | | | Stdout and stderr will be merged. Fixes: #18234
* | CMake Nightly Date StampKitware Robot2018-08-071-1/+1
| |
* | Merge topic 'autogen_single_entry'Brad King2018-08-062-28/+28
|\ \ | | | | | | | | | | | | | | | | | | 87e7904c91 Autogen: Use a single AUTOGEN setup function in cmGlobalGenerator Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2260
| * | Autogen: Use a single AUTOGEN setup function in cmGlobalGeneratorSebastian Holtermann2018-08-032-28/+28
| | | | | | | | | | | | | | | | | | By moving all AUTOGEN setup code in ``cmGlobalGenerator`` into a single ``cmGlobalGenerator::QtAutoGen`` function, the ``cmGlobalGenerator::Compute`` function becomes cleaner.
* | | Merge topic 'xcode_schemes_config'Brad King2018-08-065-0/+206
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6b7f1e1db0 Xcode: Add variables and properties to configure schemes 39c91d0703 cmGlobalGenerator: Add IsXcode query Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1803
| * | | Xcode: Add variables and properties to configure schemesGregor Jasny2018-08-013-0/+202
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add `XCODE_SCHEME_*` target properties and associated variables `CMAKE_XCODE_SCHEME_*` to initialize them on target creation. Map each target property value to an associated Xcode scheme entry. Co-Author: Martin Sander <mail@martin-sander.de> Fixes: #17919
| * | | cmGlobalGenerator: Add IsXcode queryBrad King2018-08-012-0/+4
| | |/ | |/| | | | | | | Make it easy to detect use of the Xcode generator.
* | | Merge topic 'check-unique_ptr-pgi'Brad King2018-08-064-4/+9
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 3a2c736b41 Extend C++17/C++14 feature checks to require unique_ptr Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2252
| * | | Extend C++17/C++14 feature checks to require unique_ptrBrad King2018-08-014-4/+9
| |/ / | | | | | | | | | | | | | | | | | | | | | When testing compiler modes higher than C++11 for constructs we need, include a check for using `unique_ptr` in that mode. The PGI 18.4 compiler in some environments supports `unique_ptr` in C++11 mode but is broken for C++14 and C++17. Check that `unique_ptr` works in these modes before using one.
* | | Merge topic 'file-WRITE-chmod'Brad King2018-08-062-10/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | bdd0174df1 file(WRITE): Avoid toggling permissions between 644 and 664 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2246
| * | | file(WRITE): Avoid toggling permissions between 644 and 664David Faure2018-08-012-10/+18
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | On systems with umask 022, this function would set permissions to 664 and restore them to 644 at the end, every single time it was called (which is many times on e.g. install_manifest.txt). The intent of the code was to make non-writable files temporarily writable and to restore permissions in the end, but really, if it's already user-writable there's no point in toggling this back and forth.
* | | CMake Nightly Date StampKitware Robot2018-08-061-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2018-08-051-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2018-08-041-1/+1
| |/ |/|
* | CMake Nightly Date StampKitware Robot2018-08-031-1/+1
| |
* | CMake Nightly Date StampKitware Robot2018-08-021-1/+1
|/
* Merge topic 'gcc-8-warnings'Brad King2018-08-0114-885/+910
|\ | | | | | | | | | | | | | | | | | | | | | | 276d3c7afe IWYU: Add workaround mapping for std::hash 72f57845d3 cmXMLParser: Avoid -Wconversion warning 34257b0dd4 LexerParser: Suppress GCC -Wconversion warnings cfa6b14f9c cmGlobalGenerator: Avoid -Wstringop-truncation warning 9df0e1f98a cmCommandArgumentParserHelper: Avoid -Wstringop-truncation warning b6d116e240 cmCursesLongMessageForm: Avoid -Wstringop-overflow warning Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2244
| * IWYU: Add workaround mapping for std::hashBrad King2018-07-311-0/+1
| | | | | | | | | | When using GCC 8's standard library IWYU thinks that `<system_error>` must be included to get `std::hash`. Add a mapping for `<utility>`.
| * cmXMLParser: Avoid -Wconversion warningBrad King2018-07-311-2/+2
| | | | | | | | | | Add an explicit cast since we expect the conversion to be well within range.
| * LexerParser: Suppress GCC -Wconversion warningsBrad King2018-07-319-880/+904
| | | | | | | | | | GCC 8 warns about some of the conversions in bison-generated code. Suppress the warnings.
| * cmGlobalGenerator: Avoid -Wstringop-truncation warningBrad King2018-07-311-1/+1
| | | | | | | | | | Use `memcpy` instead of `strncpy` to copy bytes into a buffer that is not intended to be null terminated.
| * cmCommandArgumentParserHelper: Avoid -Wstringop-truncation warningBrad King2018-07-311-1/+1
| | | | | | | | | | Use `memcpy` instead of `strncpy` to copy bytes from a buffer that may not be null terminated.
| * cmCursesLongMessageForm: Avoid -Wstringop-overflow warningBrad King2018-07-311-1/+1
| | | | | | | | | | | | | | | | We use `strncpy` to copy the title up to a maximum number of characters. GCC 8's `-Wstringop-overflow` warns that the length depends on the input length because it fails to recognize that we are bounding it to the buffer size too. Update the code to hide the dependence on the input length.
* | CMake Nightly Date StampKitware Robot2018-08-011-1/+1
|/
* Merge topic 'autogen_refactor_initialization'Brad King2018-07-315-704/+775
|\ | | | | | | | | | | | | | | | | | | | | | | | | 7bb70054e4 Autogen: Add test for Q_OS_ macros f345135845 Autogen: For Qt5 pass all implicit include directories to moc 2d6cfe2677 Autogen: Split initializer main method 84bdae8895 Autogen: Compute variables in Init stage instead of Setup stage 8e0d70272d Autogen: Move info file write code into methods 5776639fbf Autogen: Pass absolute include path in info file 2e9199b291 cmLocalGenerator: Respect user requested implicit include directories order Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2230
| * Autogen: For Qt5 pass all implicit include directories to mocSebastian Holtermann2018-07-301-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | For Qt4 it was not possible to pass all compiler implicit include directories to moc because it couldn't handle some system headers. For reference see commit 753b905ec86ffe369d4f59a7a8ced5fedc42939f, commit d2536579d51e77827b8e55f39123316324314781 and [QTBUG-28045](https://bugreports.qt.io/browse/QTBUG-28045). For Qt5's moc the problem does not persist anymore so we can (and should) pass all implicit include directories to moc. Fixes #18041
| * Autogen: Split initializer main methodSebastian Holtermann2018-07-302-547/+578
| |
| * Autogen: Compute variables in Init stage instead of Setup stageSebastian Holtermann2018-07-302-162/+179
| |
| * Autogen: Move info file write code into methodsSebastian Holtermann2018-07-302-174/+198
| |
| * Autogen: Pass absolute include path in info fileSebastian Holtermann2018-07-304-30/+28
| |
| * cmLocalGenerator: Respect user requested implicit include directories orderSebastian Holtermann2018-07-301-8/+7
| | | | | | | | | | | | | | In ``cmLocalGenerator::GetIncludeDirectories`` append the user requested implicit include directories first, then append the remaining implicit include directories. By By doing so we keep the user requested order of implicit include directories.
* | CMake Nightly Date StampKitware Robot2018-07-311-1/+1
|/
* CMake Nightly Date StampKitware Robot2018-07-301-1/+1
|
* CMake Nightly Date StampKitware Robot2018-07-291-1/+1
|
* CMake Nightly Date StampKitware Robot2018-07-281-1/+1
|
* Merge topic 'UseSWIG-target-name-policy'Brad King2018-07-271-1/+3
|\ | | | | | | | | | | | | a3a0c3aa71 UseSWIG: add policy to manage target naming strategy. Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2232
| * UseSWIG: add policy to manage target naming strategy.Marc Chevrier2018-07-251-1/+3
| |
* | Merge topic 'reproducible-tarballs'Brad King2018-07-271-2/+26
|\ \ | | | | | | | | | | | | | | | | | | 548ac51d8e CPack/Deb: Support SOURCE_DATE_EPOCH when packaging files Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2226
| * | CPack/Deb: Support SOURCE_DATE_EPOCH when packaging filesAndrew Fuller2018-07-251-2/+26
| | |
* | | CMake Nightly Date StampKitware Robot2018-07-271-1/+1
| | |
* | | Merge topic 'get_include_directories'Brad King2018-07-262-67/+85
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b0b820ea39 cmLocalGenerator: Extend the functionality of ``GetIncludeDirectories()`` 1f36652ef4 cmLocalGenerator: Style changes: Private local variable renames db866d05de cmLocalGenerator: Style change: Wrap temporary strings and code in braces 3713dc9b8e cmLocalGenerator: Style change: Wrap temporary strings and code in braces d1077c1ce6 cmLocalGenerator: Style change: Use return value of std::set::insert Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2234
| * | | cmLocalGenerator: Extend the functionality of ``GetIncludeDirectories()``Sebastian Holtermann2018-07-252-11/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What ``cmLocalGenerator::GetIncludeDirectories`` does ----------------------------------------------------- In general it concatenates the 1. ``target->GetIncludeDirectories(LANG)`` and the 2. ``CMAKE_<LANG>_STANDARD_INCLUDE_DIRECTORIES``. Additionally it performs some sorting and special treatment of the - ``CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES``. By default all ``CMAKE_<LANG>_IMPLICIT_INCLUDE_DIRECTORIES`` are stripped from the result list. When explicitly requested (by setting ``stripImplicitInclDirs=false``) *some* implicit directories are appended to the result list. The implicit directories that *are* appended are those that were requested to be included by 1. ``target->GetIncludeDirectories(LANG)`` or 2. ``CMAKE_<LANG>_STANDARD_INCLUDE_DIRECTORIES``. All other implicit directories are still stripped from the result list. The reason to not simply append all implicit directories is that Qt4's moc has problems to parse some headers that might be found in the implicit system include directories (See commit d2536579d51e77827b8e55f39123316324314781 and [QTBUG-28045](https://bugreports.qt.io/browse/QTBUG-28045) ). That has been solved in Qt5's moc though. Extension request to ``cmLocalGenerator::GetIncludeDirectories`` ---------------------------------------------------------------- For Qt5's moc we like to have an option that allows to append *all* implict include directories to the result list, not just those that were user requested. Changes to ``cmLocalGenerator::GetIncludeDirectories`` ------------------------------------------------------ - Shorten the function parameter name ``stripImplicitInclDirs`` to ``stripImplicitDirs``. - Add new boolean function parameter ``appendAllImplicitDirs`` with a default value ``false``. The old default behavior of the function stays the same, but a specialized behavior can be requested by AUTOMOC for Qt4/Qt5 respectively.
| * | | cmLocalGenerator: Style changes: Private local variable renamesSebastian Holtermann2018-07-251-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | Code style change in ``cmLocalGenerator::GetIncludeDirectories``. Rename a variable to reflect its purpose a little bit better.
| * | | cmLocalGenerator: Style change: Wrap temporary strings and code in bracesSebastian Holtermann2018-07-251-14/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code style change in ``cmLocalGenerator::GetIncludeDirectories``. Embrace ``{}`` temporary strings and code that uses them to minimize their lifetime.
| * | | cmLocalGenerator: Style change: Wrap temporary strings and code in bracesSebastian Holtermann2018-07-251-21/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code style change in ``cmLocalGenerator::GetIncludeDirectories``. Embrace ``{}`` temporary strings and code that uses them to minimize their lifetime.
| * | | cmLocalGenerator: Style change: Use return value of std::set::insertSebastian Holtermann2018-07-251-23/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Code style change in ``cmLocalGenerator::GetIncludeDirectories()``. Use the return value of ``std::set::insert`` instead of testing if the entry already exists in the set using ``std::find``.
* | | | CMake Nightly Date StampKitware Robot2018-07-261-1/+1
| |_|/ |/| |
* | | Merge topic 'project-injected-no-cmp0048'Craig Scott2018-07-252-2/+9
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 6646771b0f project: Do not issue CMP0048 warnings on injected call 08eb157c03 Tests: Add case showing CMP0048 warning on injected project command Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2235