[Cmake-commits] CMake branch, master, updated. v3.15.0-rc2-114-g0ecf3ef

2019-06-22 Thread Kitware Robot
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 8494d39..01a0ad1 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 15) -set(CMake_VERSION_PATCH 20190622) +set(CMake_VER

Re: [CMake] using variables in ExternalProject_Add arguments

2019-06-22 Thread Kris Thielemans
Dear all I've managed to resolve this. My mistake was to use quotes: WRONG: set(HDF5_CMAKE_ARGS "-DHDF5_ROOT:PATH=${HDF5_ROOT} -DHDF5_INCLUDE_DIRS:PATH=${HDF5_INCLUDE_DIRS} -DHDF5_FIND_DEBUG:BOOL=ON" ) CORRECT: set(HDF5_CMAKE_ARGS

Re: [CMake] Multiple exports for a target installation

2019-06-22 Thread Craig Scott
On Tue, Jun 18, 2019 at 10:29 AM Shoaib Meenai wrote: > Thank you! > > > > When you say having an export set that the other exports then depend on, > do you mean the COMPONENT option of the install(EXPORT) signature, or > something else? (Sadly the project I’m working with is still on CMake >