[Cmake-commits] CMake branch, master, updated. v3.12.0-rc1-75-g0375d73

2018-06-21 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  0375d73270483611bdf9ce005f16fd7e14e815fe (commit)
  from  39f40bde4b783e738addb4327c53c8b47a0c0178 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0375d73270483611bdf9ce005f16fd7e14e815fe
commit 0375d73270483611bdf9ce005f16fd7e14e815fe
Author: Kitware Robot 
AuthorDate: Fri Jun 22 00:01:07 2018 -0400
Commit: Kitware Robot 
CommitDate: Fri Jun 22 00:01:07 2018 -0400

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index 19aa2b0..5086bf7 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 12)
-set(CMake_VERSION_PATCH 20180621)
+set(CMake_VERSION_PATCH 20180622)
 #set(CMake_VERSION_RC 1)

---

Summary of changes:
 Source/CMakeVersion.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[CMake] Green Hills MULTI generator development

2018-06-21 Thread Erich Schroeter
 Is anyone actively developing the Green Hills MULTI generator support? If
so, who can I contact to get involved?
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake


[CMake] (no subject)

2018-06-21 Thread Darrell Langford via CMake

http://step.otasyn.com
Darrell Langford


-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake


Re: [CMake] install(TARGETS ... INCLUDES) has no effect.

2018-06-21 Thread Dmitry Igrishin
>
>
> Hello!
>
> Did you try INCLUDES DESTINATION?
>
> install (TARGETS foo
>   EXPORT foo_export
>   ARCHIVE DESTINATION bin
>   LIBRARY DESTINATION lib
>   RUNTIME DESTINATION lib
>   INCLUDES DESTINATION include)
>
Oops! It works!
I have no idea how I miss the DESTINATION keyword. And sadly CMake was
silent.
A hour of my life I spent on such a stupid mistake :-(. You make my day,
Innokentiy. Thanks!
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake


[CMake] install(TARGETS ... INCLUDES) has no effect.

2018-06-21 Thread Dmitry Igrishin
Hello,

The documentation of the INCLUDES option of install(TARGETS)

 command says:
"This option specifies a list of directories which will be added to the
INTERFACE_INCLUDE_DIRECTORIES target property of the  when
exported by the install(EXPORT) command." But using it has no effect, for
example:

install(TARGETS foo
  EXPORT foo_export
  ARCHIVE DESTINATION bin
  LIBRARY DESTINATION lib
  RUNTIME DESTINATION lib
  INCLUDES include)

install(EXPORT foo_export
  DESTINATION cmake)
  FILE foo-config.cmake)

The installed foo-config.cmake doesn't set INTERFACE_INCLUDE_DIRECTORIES.

The only way to achieve the described above behaviour is using
target_include_directories()
,
like this:

target_include_directories(foo PUBLIC $)

I'm using CMake 3.11.4 on Windows. Am I missing something?
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake