[Cmake-commits] CMake branch, master, updated. v3.13.0-rc1-101-gfd71ad3

2018-10-12 Thread Kitware Robot
t a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 1bc2632..43b81a8 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 20181012) +set(CMake_VER

Re: [cmake-developers] Current Projects

2018-10-12 Thread Kyle Edwards
On Fri, 2018-10-12 at 14:01 -0700, George Blikas wrote: > I was looking to be a more serious contributor to CMake. Is there a > list of feature requests, or a simple enough project that I could get > started on? Hello George, Thank you for your interest in contributing to CMake! We're always happy

Re: [CMake] Building arguments to target_comple_definitions()

2018-10-12 Thread Chuck Atkins
> So in CMake parlance, what type is the last argument to > target_compile_definitions? Is it a list, string or something else? > It's a series of VISIBILITY_SPECIFIER DEF1 DEF2 ... DEFN, so the visibility specifier followed by a list of definitions, optionally followed by another visibility

Re: [CMake] Putting the git commit hash in a cmake variable

2018-10-12 Thread Ben Boeckel
Sorry if this shows up oddly on the list; I was forwarded the original in order to reply. As such, please keep me in Cc. > I'd like to set a CMake variable to the current git commit short hash. > This variable will be used as part of the version string for my > project (ex:

[Cmake-commits] CMake branch, master, updated. v3.13.0-rc1-100-g7bacb22

2018-10-12 Thread Kitware Robot
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 7bacb2295583f1a0e04a7312c370064310b1834b (commit) via

[Cmake-commits] CMake branch, release, updated. v3.13.0-rc1-13-g769fc9c

2018-10-12 Thread Kitware Robot
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, release has been updated via 769fc9c4de2daad3b6c935d51e46bacc85131176 (commit) via

[Cmake-commits] CMake branch, master, updated. v3.13.0-rc1-96-g0d8a4de

2018-10-12 Thread Kitware Robot
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 0d8a4ded12f621a410b60117a64b7842649f0d1d (commit) via

[Cmake-commits] CMake branch, master, updated. v3.13.0-rc1-87-ge9eaf0f

2018-10-12 Thread Kitware Robot
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 e9eaf0f262543db6d458956bfa3d5da7edfb9744 (commit) via

Re: [CMake] Controlling order of includes with INTERFACE_INCLUDE_DIRECTORIES for an IMPORTED target

2018-10-12 Thread David Jobet
> what version of CMake are you using? I'm using cmake version 3.10.0. > Which seems at odds with your observations/comments, unless I'm > misunderstanding what you're saying. Well, what's for sure is that the above invocation does not compile, but if at our root CMakeLists.txt we add

Re: [CMake] Controlling order of includes with INTERFACE_INCLUDE_DIRECTORIES for an IMPORTED target

2018-10-12 Thread Craig Scott
On Fri, Oct 12, 2018 at 6:42 PM David Jobet wrote: > Hello, > > we embed in our source a copy of an ICC build of LLVM, that we import : > > add_library(global_llvm_external STATIC IMPORTED) > set_property(TARGET global_llvm_external APPEND PROPERTY > INTERFACE_INCLUDE_DIRECTORIES

[CMake] Controlling order of includes with INTERFACE_INCLUDE_DIRECTORIES for an IMPORTED target

2018-10-12 Thread David Jobet
Hello, we embed in our source a copy of an ICC build of LLVM, that we import : add_library(global_llvm_external STATIC IMPORTED) set_property(TARGET global_llvm_external APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}/icc/include) set_property(TARGET

Re: [CMake] Putting the git commit hash in a cmake variable

2018-10-12 Thread Elvis Stansvik
Den fre 12 okt. 2018 00:24Matt Schulte skrev: > Ah, that's a good tip Elvis. The CONFIGURE_DEPENDS on the .git/index > would do the trick. I can set that up for now. > > In the long run, its not that ideal because it forces a reconfigure on > every commit (which is annoying for developers at