summaryrefslogtreecommitdiffstats
path: root/Utilities/std/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* STL Support: Add cm::filesystem::path in <cm/filesystem>Marc Chevrier2020-07-091-1/+3
|
* Refactoring: rename "cm_static_string_view.hxx" as <cmext/string_view>Marc Chevrier2020-04-301-1/+2
|
* CMake compilation: do not use compiler extensionsMarc Chevrier2020-03-231-0/+4
| | | | | | | For now, compiler extensions are no longer activated on CMake sources. However these extensions are still used for various third parties. This MR is a partial answer to the issue #20454.
* cmstd: Modernize CMake system headersMarc Chevrier2019-09-201-0/+10
Provide a standardized way to handle the C++ "standard" headers customized to be used with current CMake C++ standard constraints. Offer under directory `cm` headers which can be used as direct replacements of the standard ones. For example: #include <cm/string_view> can be used safely for CMake development in place of the `<string_view>` standard header. Fixes: #19491