Re: [CMake] Problems with ExternalProject_Add

2019-05-26 Thread Craig Scott
On Wed, May 22, 2019 at 7:13 PM Steven Truppe wrote: > Hi everyone, > > > i'm trying to use ExternalProject_Add like the following: > > set(BOOST_VERSION 1.68.0) > set(BOOST_VERSION_NODOTS 1_68_0) > set(BOOST_URI >

[CMake] Problems with ExternalProject_Add

2019-05-22 Thread Steven Truppe
Hi everyone, i'm trying to use ExternalProject_Add like the following: set(BOOST_VERSION 1.68.0) set(BOOST_VERSION_NODOTS 1_68_0) set(BOOST_URI https://dl.bintray.com/boostorg/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_NODOTS}.tar.gz) set(BOOST_HASH

[CMake] Problems with ExternalProject_Add and tar.gz files

2010-04-02 Thread Ben Medina
I'm trying to get ExternalProject_Add to work, using a tar.gz file as the source. My experiment thus far is with boost, and my code looks like this: include (ExternalProject) set (boost_libs_to_build program_options) ExternalProject_Add( boost URL

Re: [CMake] Problems with ExternalProject_Add and tar.gz files

2010-04-02 Thread Luigi Calori
I got exactly the same error in doing something similar: it is the untar phase based on cmake that seem to fail on some kind of tar: in the untar phase, externalProject uses cmake -E tar xvf tar file and this is the part that fail. if I issue the command: cmake -E tar xzf

Re: [CMake] Problems with ExternalProject_Add and tar.gz files

2010-04-02 Thread Ben Medina
Thanks. Bug filed: http://www.cmake.org/Bug/view.php?id=10505 On Fri, Apr 2, 2010 at 2:28 PM, Luigi Calori l.cal...@cineca.it wrote: I got exactly the same error in doing something similar: it is the untar phase based on cmake that seem to fail on some kind of tar: in the untar phase,