Re: [CMake] ExternalProject question

2016-02-07 Thread Nicholas Braden
You will need to look at their building documentation to find how to set those preferences when building with CMake. On Sat, Feb 6, 2016 at 11:47 PM, vadtec wrote: > I'm using ExternalProject to build external dependencies. curl provides a > cmake build process, but I cannot

[CMake] ExternalProject question

2016-02-06 Thread vadtec
I'm using ExternalProject to build external dependencies. curl provides a cmake build process, but I cannot figure out how to pass options such as: --disable-manual --disable-shared --without-librtmp --without-libidn --without-winidn --without-winssl --disable-ldap --disable-ldaps --enable-ipv6

Re: [CMake] ExternalProject() Question

2009-12-17 Thread Michael Wild
On 16. Dec, 2009, at 20:35 , Michael Jackson wrote: I am intrigued by the ExternalProject feature of CMake 2.8. One question that I have after reading through the Oct 09 Kitware Source is this. If I do a make clean or rebuild are all the ExternalProjects also cleaned/rebuilt? I could make

Re: [CMake] ExternalProject() Question

2009-12-17 Thread David Cole
On Thu, Dec 17, 2009 at 3:20 AM, Michael Wild them...@gmail.com wrote: On 16. Dec, 2009, at 20:35 , Michael Jackson wrote: I am intrigued by the ExternalProject feature of CMake 2.8. One question that I have after reading through the Oct 09 Kitware Source is this. If I do a make clean or

Re: [CMake] ExternalProject() Question

2009-12-17 Thread Michael Wild
On 17. Dec, 2009, at 15:01 , David Cole wrote: On Thu, Dec 17, 2009 at 3:20 AM, Michael Wild them...@gmail.com wrote: On 16. Dec, 2009, at 20:35 , Michael Jackson wrote: I am intrigued by the ExternalProject feature of CMake 2.8. One question that I have after reading through the Oct

Re: [CMake] ExternalProject() Question

2009-12-17 Thread David Cole
On Thu, Dec 17, 2009 at 10:53 AM, Michael Wild them...@gmail.com wrote: On 17. Dec, 2009, at 15:01 , David Cole wrote: On Thu, Dec 17, 2009 at 3:20 AM, Michael Wild them...@gmail.com wrote: On 16. Dec, 2009, at 20:35 , Michael Jackson wrote: I am intrigued by the ExternalProject

Re: [CMake] ExternalProject() Question

2009-12-17 Thread Michael Wild
On 17. Dec, 2009, at 17:34 , David Cole wrote: On Thu, Dec 17, 2009 at 10:53 AM, Michael Wild them...@gmail.com wrote: On 17. Dec, 2009, at 15:01 , David Cole wrote: On Thu, Dec 17, 2009 at 3:20 AM, Michael Wild them...@gmail.com wrote: On 16. Dec, 2009, at 20:35 , Michael Jackson

Re: [CMake] ExternalProject() Question

2009-12-17 Thread Michael Jackson
On Dec 17, 2009, at 11:34 AM, David Cole wrote: On Thu, Dec 17, 2009 at 10:53 AM, Michael Wild them...@gmail.com wrote: On 17. Dec, 2009, at 15:01 , David Cole wrote: On Thu, Dec 17, 2009 at 3:20 AM, Michael Wild them...@gmail.com wrote: On 16. Dec, 2009, at 20:35 , Michael Jackson

[CMake] ExternalProject() Question

2009-12-16 Thread Michael Jackson
I am intrigued by the ExternalProject feature of CMake 2.8. One question that I have after reading through the Oct 09 Kitware Source is this. If I do a make clean or rebuild are all the ExternalProjects also cleaned/rebuilt? I could make an argument both ways but I was curious what the