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.
15 lines
319 B
15 lines
319 B
10 years ago
|
if(APPLE)
|
||
|
ExternalProject_Add(snappy
|
||
|
URL https://snappy.googlecode.com/files/snappy-1.1.1.tar.gz
|
||
|
BINARY_DIR snappy-prefix/src/snappy
|
||
|
CONFIGURE_COMMAND ./configure --disable-dependency-tracking --prefix=${ETH_DEPENDENCY_INSTALL_DIR}
|
||
|
BUILD_COMMAND ""
|
||
|
INSTALL_COMMAND make install
|
||
|
)
|
||
|
elseif(WIN32)
|
||
|
|
||
|
else()
|
||
|
|
||
|
endif()
|
||
|
|