You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
237 B
12 lines
237 B
10 years ago
|
include(ExternalProject)
|
||
|
|
||
|
ExternalProject_Add(curl
|
||
|
URL http://curl.haxx.se/download/curl-7.38.0.tar.bz2
|
||
|
BINARY_DIR curl-prefix/src/curl
|
||
|
CONFIGURE_COMMAND ./configure --with-darwinssl
|
||
|
BUILD_COMMAND make -j 3
|
||
|
INSTALL_COMMAND ""
|
||
|
)
|
||
|
|
||
|
|