[Cmake-commits] CMake branch, master, updated. v3.15.0-391-gf3bbbb4

2019-07-21 Thread Kitware Robot
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 218e24f..f0084cd 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 20190721) +set(CMake_VER

[CMake] Getting library name from library target to pass to legacy Makefile

2019-07-21 Thread Dustyn Blasig
Hi All, I am integrating a legacy Makefile with our CMake flow, and need to pass the name of a CMake library target to the Makefile via add_custom_command(). The library uses the OUTPUT_NAME property to override the default. add_library(foo_lib SHARED ...) set_target_properties(foo_lib

Re: [CMake] FetchContent/ExternalProject and URL_HASH

2019-07-21 Thread Dustyn Blasig
Thanks for the info, Craig. I'm not very familiar with the intricacies of network downloads. If the download itself guarantees the file was transferred correctly and the checksum is only be used to verify its authenticity, then we probably don't need it as we're only downloading these artifacts

Re: [CMake] getting compiler's include paths

2019-07-21 Thread jl forums
lol c++20 modules  IF users use them modules is just pain in the ass for developers I hope that real developers will simply ignore them headers are here for a good reason, and stupid languages like python that use modules are just stupid it will make more complicated for

Re: [CMake] FetchContent/ExternalProject and URL_HASH

2019-07-21 Thread Craig Scott
On Wed, Jul 17, 2019 at 12:59 PM Dustyn Blasig wrote: > Hi All, > > We are pulling some artifacts from Artifactory which provides a checksum > file along with the artifacts at .md5 or .sha256. If I do not > include URL_HASH, does CMake automatically check to see if such a checksum > file exists