[Cmake-commits] CMake branch, master, updated. v3.13.1-564-gd8c6427

2018-12-05 Thread Kitware Robot via Cmake-commits
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 8844d44..e4f11ed 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 13) -set(CMake_VERSION_PATCH 20181205) +set(CMake_VER

Re: [CMake] New version forces rebuild all?

2018-12-05 Thread Cristian Adam
On Wed, Dec 5, 2018 at 10:19 PM Andy wrote: > (previously I send this mail not to mail list, but user) > Maybe my cmake files are bad? > I have created test project > https://gitlab.com/andrzejbor/test_rebuild_all > after commit is rebuild whole project > what I might change? > I don't want

Re: [cmake-developers] A dashboard that reveals a ctest issue on Windows when there are no tests

2018-12-05 Thread Alan W. Irwin
On 2018-12-05 12:37-0800 Alan W. Irwin wrote: On 2018-12-05 09:22-0500 Brad King via cmake-developers wrote: On 12/4/18 4:08 PM, Alan W. Irwin wrote: Build Warnings (1) *** WARNING non-zero return value in ctest from: C:\cmake-3.13.1-win64-x64\bin\cmake.exe That's in the "Build"

[CMake] New version forces rebuild all?

2018-12-05 Thread Andy
(previously I send this mail not to mail list, but user) Maybe my cmake files are bad? I have created test project https://gitlab.com/andrzejbor/test_rebuild_all after commit is rebuild whole project what I might change? I don't want moving all but .git to one directory src/ -- Powered by

Re: [cmake-developers] A dashboard that reveals a ctest issue on Windows when there are no tests

2018-12-05 Thread Alan W. Irwin
On 2018-12-05 09:22-0500 Brad King via cmake-developers wrote: On 12/4/18 4:08 PM, Alan W. Irwin wrote: Build Warnings (1) *** WARNING non-zero return value in ctest from: C:\cmake-3.13.1-win64-x64\bin\cmake.exe That's in the "Build" section and indicates that the build command exited

[CMake] Imported targets fail to be added to the FOLDER property.

2018-12-05 Thread Albrecht Fritzsche
Hi, is there a way to add an imported target to the IDE similar to the way eg executable targets are added? In the following code the last line seems to have no effect, ie when opening the generated Visual Studio solution neither the helloWorld.cpp nor the folder "tests" is shown

Re: [cmake-developers] A dashboard that reveals a ctest issue on Windows when there are no tests

2018-12-05 Thread Brad King via cmake-developers
On 12/4/18 4:08 PM, Alan W. Irwin wrote: > Build Warnings (1) > > *** WARNING non-zero return value in ctest from: > C:\cmake-3.13.1-win64-x64\bin\cmake.exe That's in the "Build" section and indicates that the build command exited with non-zero status. If you want to try to reproduce that by

Re: [CMake] target_compile_features() uses incorrect C++ version

2018-12-05 Thread Deniz Bahadir
Am 05.12.18 um 14:37 schrieb Kim Walisch: OK thanks, I have created a new issue at: https://gitlab.kitware.com/cmake/cmake/issues/18686 Greetings, Kim Thanks, great. Best regards, Deniz PS: Next time better answer to the mailing-list. ;-) This is probably interesting for others that read

Re: [CMake] target_compile_features() uses incorrect C++ version

2018-12-05 Thread Deniz Bahadir
Am 05.12.18 um 13:40 schrieb Kim Walisch: Hi, I have realized that my C++ primesieve project (https://github.com/kimwalisch/primesieve) is compiled using -std=gnu++11 with GCC 7.3 and CMake 3.10 (on Ubuntu 18.10 x64) even though the default C++ version used by GCC 7.3 is C++14 as checked

[CMake] target_compile_features() uses incorrect C++ version

2018-12-05 Thread Kim Walisch
Hi, I have realized that my C++ primesieve project ( https://github.com/kimwalisch/primesieve) is compiled using -std=gnu++11 with GCC 7.3 and CMake 3.10 (on Ubuntu 18.10 x64) even though the default C++ version used by GCC 7.3 is C++14 as checked below: $ g++ -dM -E -x c++ /dev/null | grep -F