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 > https://dl.bintray.com/boostorg/release/${BOOST_VERSION}/source/boost_${BOOST_VER

[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 5d8b4503582fffa9eefdb9045359c239)

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 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, externalProject uses cma

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 and this is the part that fail. if I issue the command: >cmake -E tar xzf boost-1.41.0.cmake0.tar.gz or u

[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 http://sodium.resopho