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

2015-04-23 Thread Cedric Doucet
original - > De: "Cedric Doucet" > À: cmake@cmake.org > Envoyé: Jeudi 23 Avril 2015 14:14:59 > Objet: Re: [CMake] Don't download external projects again after calling "make > clean" > > > > > > Does the extracted eigen source

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

2015-04-23 Thread Cedric Doucet
il original - > De: "Cedric Doucet" > À: cmake@cmake.org > Envoyé: Jeudi 23 Avril 2015 14:01:54 > Objet: Re: [CMake] Don't download external projects again after calling "make > clean" > > > I don't know why but providing my ow

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

2015-04-23 Thread Cedric Doucet
ct/eigen/build/eigen > > && /usr/local/bibliotheques/cmake/3.2.2/bin/cmake -P > > /home/cdoucet/Documents/exemples/cmake/external_project/eigen/build/eigen/src/eigen-stamp/verify-eigen.cmake > > -- verifying file... > > file='/home/cdoucet/Downloads/eigen/3.

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

2015-04-23 Thread David Cole via CMake
cuments/exemples/cmake/external_project/eigen/build/eigen/src' > -- extracting... [tar xfz] > -- extracting... [analysis] > -- extracting... [rename] > -- extracting... [clean up] > -- extracting... done > cd /home/cdoucet/Documents/exemples/cmake/external_project/eigen

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

2015-04-23 Thread Cedric Doucet
ct/eigen/build » make: *** [all] Erreur 2 = ----- Mail original - > De: "David Cole" > À: "Cedric Doucet" > Cc: cmake@cmake.org > Envoyé: Jeudi 23 Avril 2015 13:14:35 > Objet: Re: [CMake] Don't download external projects again af

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

2015-04-23 Thread David Cole via CMake
-- extracting... [rename] > -- extracting... [clean up] > -- extracting... done > cd /home/cdoucet/Downloads/eigen && > /usr/local/bibliotheques/cmake/3.2.2/bin/cmake -E touch > /home/cdoucet/Downloads/eigen/src/eigen-stamp/eigen-download > make[2]: *** [/home/cdoucet/Downloa

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

2015-04-23 Thread Cedric Doucet
» make: *** [all] Erreur 2 = - Mail original ----- > De: "David Cole" > À: "Cedric Doucet" > Cc: cmake@cmake.org > Envoyé: Samedi 18 Avril 2015 20:39:57 > Objet: Re: [CMake] Don't download external projects again after calling "

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

2015-04-18 Thread David Cole via CMake
ove all previous of curl and libcurl but it does not change > > anything. > > > > Could you help me? > > > > Cédric > > > > > > - Mail original - > > > De: "Cedric Doucet" > > > > À: "David Cole" > >

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

2015-04-18 Thread Cedric Doucet
gt; - Mail original - > > De: "Cedric Doucet" > > À: "David Cole" > > Cc: cmake@cmake.org > > Envoyé: Samedi 18 Avril 2015 13:00:28 > > Objet: Re: [CMake] Don't download external projects again after calling > > "make clean&

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

2015-04-18 Thread Cedric Doucet
> 301 Moved Permanently > > nginx/1.6.2 > > > > > > Connection #0 to host bitbucket.org left intact > > Issue another request to this URL: > 'https://bitbucket.org/eigen/eigen/get/3.2.4.tar.gz' > > Protocol "https&quo

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

2015-04-18 Thread Cedric Doucet
t; À: "Cedric Doucet" > Cc: cmake@cmake.org > Envoyé: Vendredi 17 Avril 2015 13:21:08 > Objet: Re: [CMake] Don't download external projects again after calling "make > clean" > > Eliminate your DOWNLOAD_COMMAND. CMake knows how to do it with just &g

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

2015-04-17 Thread David Cole via CMake
--------- > > > > ----- Mail original - >> De: "David Cole" >> À: "Cedric Doucet" >> Cc: cmake@cmake.org >> Envoyé: Lundi 13 Avril 2015 12:40:34 >> Objet: Re: [CMake] Don't download external pr

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

2015-04-16 Thread Cedric Doucet
ot; > Cc: cmake@cmake.org > Envoyé: Lundi 13 Avril 2015 12:40:34 > Objet: Re: [CMake] Don't download external projects again after calling "make > clean" > > Use the URL_MD5 and DOWNLOAD_DIR arguments to ExternalProject_Add to > put the downloaded files into a

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

2015-04-13 Thread David Cole via CMake
Use the URL_MD5 and DOWNLOAD_DIR arguments to ExternalProject_Add to put the downloaded files into a location outside the build tree (perhaps ~/Downloads on Mac/Linux or $ENV{USERPROFILE}/Downloads on Windows). With DOWNLOAD_DIR outside the build tree, and the checksums of the downloaded files bei

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

2015-04-13 Thread Cedric Doucet
Hello! I use the ExternalProject_Add function to download third-party libraries of a code. Once a library has been downloaded, I can call "make" as many times as I want without downloading this library again. It seems that CMake detects that the library has already been downloaded. Howeve