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
213 B
12 lines
213 B
10 years ago
|
include(ExternalProject)
|
||
|
|
||
|
ExternalProject_Add(cryptopp
|
||
|
URL http://www.cryptopp.com/cryptopp562.zip
|
||
|
BINARY_DIR cryptopp-prefix/src/cryptopp
|
||
|
CONFIGURE_COMMAND ""
|
||
|
BUILD_COMMAND make -j 3
|
||
|
INSTALL_COMMAND ""
|
||
|
)
|
||
|
|
||
|
|