Re: [CMake] ExternalProject_Add and Boost

2012-06-21 Thread Bill Lorensen
nd install a git client to get the build to work; that > is why I wanted to choose the zipball. > > > > > > -- > > Message: 3 > > Date: Mon, 18 Jun 2012 10:55:50 +0200 > > From: Mathias Gaunard > > Subject: Re: [CMake]

Re: [CMake] ExternalProject_Add and Boost

2012-06-21 Thread Stefan Eilemann
On 18. Jun 2012, at 20:03, Knox, Kent wrote: > That is an interesting approach; if this 'superbuild' cmake project > downloaded and built all the external dependencies first, then my project > could find those dependencies with the appropriate find module? I suppose > that the 'superbuild' co

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Ben Medina
gt; > -Original Message- > From: Ben Medina [mailto:ben.med...@gmail.com] > Sent: Monday, June 18, 2012 11:59 AM > To: Knox, Kent > Cc: cmake@cmake.org > Subject: Re: [CMake] ExternalProject_Add and Boost > >> 4.       ExternalProject_Add will download, configure and build pr

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Knox, Kent
pball. -- Message: 3 Date: Mon, 18 Jun 2012 10:55:50 +0200 From: Mathias Gaunard mailto:mathias.gaun...@ens-lyon.org>> Subject: Re: [CMake] ExternalProject_Add and Boost To: cmake@cmake.org<mailto:cmake@cmake.org> Message-ID: <4fdeed16.4020...@ens-lyon.org<mailto:4fdeed16.4020...@

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Bill Hoffman
On 6/18/2012 2:03 PM, Knox, Kent wrote: That is an interesting approach; if this 'superbuild' cmake project downloaded and built all the external dependencies first, then my project could find those dependencies with the appropriate find module? I suppose that the 'superbuild' could set the BOOS

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Knox, Kent
e.org Subject: Re: [CMake] ExternalProject_Add and Boost > 4. ExternalProject_Add will download, configure and build projects at > 'build' time. From the documentation, this sounded like a design decision. > However, this means that you can't use the already robust and mature > findb

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Ben Medina
> 4. ExternalProject_Add will download, configure and build projects at > ‘build’ time. From the documentation, this sounded like a design decision. > However, this means that you can’t use the already robust and mature > findboost() module to configure the Boost project. Would it be possib

Re: [CMake] ExternalProject_Add and Boost

2012-06-18 Thread Mathias Gaunard
On 18/06/2012 08:42, Knox, Kent wrote: BUILD_COMMAND bjam --with-program_options address-model=64 toolset=msvc-11.0 link=static stage Two comments here: - bjam has been renamed to b2 since Boost 1.47 - this probably uses the bjam/b2 in the path, rather than the one that you just built with

[CMake] ExternalProject_Add and Boost

2012-06-17 Thread Knox, Kent
Hi all~ I have been experimenting in my project with using ExternalProject_Add. My goal is to make our build process more automated, with less headache to get up and started developing on a fresh system. I decided that boost would be a great dependency to automate, which I successfully comple