[CMake] transitive linkage of OBJECT library targets

2019-05-21 Thread Richard Szabo
Hi cmakers I'm trying to get the following example working: ``` cmake_minimum_required(VERSION 3.14) project(test_object_lib_nesting) set(CMAKE_CXX_STANDARD 14) add_library(first_object_lib OBJECT first.cpp) add_library(second_object_lib OBJECT second.cpp)

[Cmake-commits] CMake branch, master, updated. v3.14.4-1033-gf01e18e

2019-05-21 Thread Kitware Robot via Cmake-commits
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 4303c25..e226579 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 20190521) +set(CMake_VER

Re: [CMake] Building CMake with custom OpenSSL

2019-05-21 Thread Robert Maynard via CMake
I don't believe that we test CMake with that configuration of OpenSSL. If it works, I cant promise it will continue to work going forward. On Mon, May 20, 2019 at 4:44 PM A.Dmitrovsky wrote: > > Hi, > > I am building CMake (on x64 linux) with custom OpenSSL and wondering if there > are any

[Cmake-commits] CMake branch, master, updated. v3.14.4-1032-g0bf5348

2019-05-21 Thread Kitware Robot via Cmake-commits
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, master has been updated via 0bf53483295a4b7de358e8b85ad44866d89633c5 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.14.4-1028-g389f795

2019-05-21 Thread Kitware Robot via Cmake-commits
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMake". The branch, master has been updated via 389f795d2e68d287fcbba0d5e0e4678f3d90fe4c (commit) via

Re: [CMake] cmake doesn't run all tests

2019-05-21 Thread hex
hello Eric, Some of my recent changes prevented my function to add a build target. It was building either one or the other but not both. Therefore, half of the tests where missing. You are right it is working correctly now. thank you for your patience. This should work at least it

Re: [CMake] cmake doesn't run all tests

2019-05-21 Thread Eric Noulard
Le mar. 21 mai 2019 à 11:45, hex a écrit : > hello, > > I have two modules in my CMake project: > > *root* > *├── foo* > *│ ├── CMakeLists.txt* > *│ ├── src* > *│ │ └── foo.c* > *│ └── tests* > *│ ├── foo_unit_test.c* > *│ └── CMakeLists.txt* > *├── CMakeLists.txt* > *└──

[CMake] cmake doesn't run all tests

2019-05-21 Thread hex
hello, I have two modules in my CMake project: /root// //├── foo// //│   ├── CMakeLists.txt// //│   ├── src// //│   │   └── foo.c// //│   └── tests// //│   ├── foo_unit_test.c// //│   └── CMakeLists.txt// //├── CMakeLists.txt// //└── moo// //    ├── CMakeLists.txt// //    ├── src// //