[Cmake-commits] CMake branch, master, updated. v3.14.3-770-ga9c113f

2019-04-26 Thread Kitware Robot via Cmake-commits
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 0ab4f76..63ca76a 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,5 +1,5 @@ # CMake version number components. set(CMake_VERSION_MAJOR 3) set(CMake_VERSION_MINOR 14) -set(CMake_VERSION_PATCH 20190426) +set(CMake_VER

Re: [CMake] ctest // fixtures and --repeat-until-fail

2019-04-26 Thread Craig Scott
On Tue, Apr 16, 2019 at 11:36 PM Sergei Nikulov wrote: > > > > On Tue, Apr 16, 2019 at 10:07 PM Sergei Nikulov < > sergey.niku...@gmail.com> wrote: > >> > >> Hello All, > >> > >> Has anybody knows how FIXTURES_SETUP/FIXTURES_CLEANUP should work with > >> --repeat-until-fail option? > >> > >> My

[CMake] How does IMPLICIT_DEPENDS work?

2019-04-26 Thread Paul Smith
We're trying to implement precompiled headers (yes, I've seen all the various github projects around this). As part of this we need to make sure the precompiled header is rebuilt whenever any of the headers that it includes changes: this seems like exactly the job for add_custom_command's

Re: [CMake] Support of compile features for Fujitsu C++ Compiler

2019-04-26 Thread Robert Maynard via CMake
For an initial implementation I would base the work on the PGI compiler module ( https://gitlab.kitware.com/cmake/cmake/blob/v3.14.3/Modules/Compiler/PGI-CXX.cmake ) not the GNU-CXX module. This will allow you to add a new compiler with only meta-language flags ( cxx_std_11, cxx_std_14, ... ) and

Re: [CMake] Support of compile features for Fujitsu C++ Compiler

2019-04-26 Thread Zehner Paul
Kai, Thanks for your answer and for your presentation. So, I will try to add support for this Fujitsu compiler. Is there a list of the common compile features that I can base me upon? I plan use `GNU-CXX.cmake` as a source of inspiration. If I succeed to complete the `Fujitsu-CXX.cmake`

Re: [CMake] Support of compile features for Fujitsu C++ Compiler

2019-04-26 Thread Kai Wolf
If you want to add support to your specific compiler, you could add or extend another Fujitsu-DetermineCompiler.cmake file and append your CMAKE_MODULE_PATH in order to CMake to find it. You probably also need to adjust *Fujitsu-CXX.cmake, Fujitsu-CXX-FeatureTests.cmake and so on. I gave a talk