Re: [CMake] Don't download external projects again after calling make clean

2015-04-18 Thread Cedric Doucet
Hello David, thank you very much. Unfortunately, I get the following error message if I remove my download command: -- downloading... src='http://bitbucket.org/eigen/eigen/get/3.2.4.tar.gz' dst='/home/cdoucet/Downloads/eigen/download/3.2.4.tar.gz' timeout='none' -- [download

Re: [CMake] Don't download external projects again after calling make clean

2015-04-18 Thread Cedric Doucet
Ok it seems the answer to my problem is here: http://www.cmake.org/pipermail/cmake/2010-December/041295.html I will try it. - Mail original - De: Cedric Doucet cedric.dou...@inria.fr À: cmake@cmake.org Envoyé: Samedi 18 Avril 2015 13:38:31 Objet: Re: [CMake] Don't download external

[Cmake-commits] CMake branch, next, updated. v3.2.2-1918-gcae2b4e

2015-04-18 Thread Stephen Kelly
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, next has been updated via cae2b4e846a2dbabfe930d157c736883cb54313f (commit) via

[Cmake-commits] CMake branch, next, updated. v3.2.2-1938-gc753650

2015-04-18 Thread Stephen Kelly
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, next has been updated via c753650a464694b3e11f6bd59bf63dbd6fb2f4de (commit) via

[cmake-developers] [CMake 0015522]: CPack config file ignored if relative

2015-04-18 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15522 == Reported By:Stephen Kelly Assigned To:

[CMake] Do build after GIT_TAG changed in ExternalProject_Add

2015-04-18 Thread typ1232
Hello, The command is used as follows: INCLUDE(ExternalProject) ExternalProject_Add(name GIT_REPOSITORY https://bitbucket.org/foo/bar.git GIT_TAG 0fcae6c2c975b309b38b8c84ac681b6bf3ae12e7 CMAKE_ARGS INSTALL_COMMAND ) This downloads and builds the project successfully, but if I

Re: [CMake] Don't download external projects again after calling make clean

2015-04-18 Thread Cedric Doucet
I have just tried to install curl to get https support. To do that, I have followed the steps below: 1. Installation of openssl: 1.a. ./config --prefix=/my/openssl/path 1.b. make 1.c. make test 1.d. make install 2. Installation of curl 2.a. ./configure --prefix=/my/curl/path

Re: [CMake] Don't download external projects again after calling make clean

2015-04-18 Thread David Cole via CMake
What version of CMake are you using? All the modern pre-built CMake installations should support https without extra effort on your part. Are you using a pre-built version from somewhere or are you building CMake yourself? On Saturday, April 18, 2015, Cedric Doucet cedric.dou...@inria.fr wrote:

Re: [CMake] Do build after GIT_TAG changed in ExternalProject_Add

2015-04-18 Thread David Cole via CMake
What version of CMake are you using? And what generator? On Saturday, April 18, 2015, typ1232 dummdoof-d...@web.de wrote: Hello, The command is used as follows: INCLUDE(ExternalProject) ExternalProject_Add(name GIT_REPOSITORY https://bitbucket.org/foo/bar.git GIT_TAG

Re: [CMake] Do build after GIT_TAG changed in ExternalProject_Add

2015-04-18 Thread typ1232
I'm using CMake 3.0.2 with the Visual Studio 2013 generator. -- View this message in context: http://cmake.3232098.n2.nabble.com/Do-build-after-GIT-TAG-changed-in-ExternalProject-Add-tp7590299p7590302.html Sent from the CMake mailing list archive at Nabble.com. -- Powered by www.kitware.com

Re: [CMake] ExternalProject can't have interface library as a dependency

2015-04-18 Thread Andrey Pokrovskiy
That sounds odd. What provides it as an INTERFACE library? Me :) I created that target with add_library(openssl INTERFACE). I think I better ask the same question on dev list, since it's mostly details of get_property() implementation. On Sat, Apr 18, 2015 at 2:32 AM, Stephen Kelly

[CMake] Per target, per configuration compile flags issue

2015-04-18 Thread John van der Burg
I'm having some problem with custom configurations in combination with multiple cmake projects. Basically what I have is some helper function/macro which sets the available configurations, sets the CMAKE_CXX_FLAGS_configname etc. I do this with: set(CMAKE_CONFIGURATION_TYPES Debug Release)

[Cmake-commits] CMake branch, master, updated. v3.2.2-805-g4c00a37

2015-04-18 Thread Kitware Robot
20150418) +set(CMake_VERSION_PATCH 20150419) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- CMake

Re: [cmake-developers] [CMake 0011944]: CPackDeb: Support dependencies between components/Debian packages

2015-04-18 Thread Raffi Enficiaud
Le 18/04/15 09:34, Domen Vrankar a écrit : I added the following functionalities: - set the permissions of the md5sum to RW-R--R--, because lintian complains - added an option to set the shlibdeps per component - added an option to set the dependencies per component - added an option to set the

Re: [CMake] Strange behaviour of STREQUAL with a variable containing only type

2015-04-18 Thread Stephen Kelly
Nils Gladitz wrote: It is expected if type itself is a variable (set by some module evaluated by project()). Indeed we should probably clean up after ourselves (in the project() implementation) when using such generic names... Thanks, Steve. -- Powered by www.kitware.com Please keep

Re: [CMake] ExternalProject can't have interface library as a dependency

2015-04-18 Thread Stephen Kelly
Andrey Pokrovskiy wrote: /* I'm using cmake-3.2.20150331-gb190c. */ I have a following construction: ExternalProject_Add( websockets_ep DEPENDS ev openssl ...) But it so happened, that openssl is a INTERFACE library. That sounds odd. What provides it as an

Re: [CMake] cmp0026, file(GENERATE...), and configure_file

2015-04-18 Thread Stephen Kelly
Alan W. Irwin wrote: So is it recommended that a two-step procedure be used to configure a file? For example: Yes, that seems to be a valid thing to do. If the above complications for configured files are the only way to deal with a mixture of @...@ items and generator expressions to

Re: [cmake-developers] Generating buildsystem metadata from CMake

2015-04-18 Thread Stephen Kelly
Stephen Kelly wrote: The aim is to generate a structured file containing metadata relating the buildsystem. I've been quiet on this thread for a while, so I think it is time for an update. I became more ambitious in mid March and started prototyping a more-complete design for CMake IDE