sveneh
10 years ago
5 changed files with 43 additions and 21 deletions
@ -0,0 +1,5 @@ |
|||
cmake_minimum_required(VERSION 3.0) |
|||
|
|||
include(cryptopp.cmake) |
|||
include(miniupnpc.cmake) |
|||
|
@ -0,0 +1,11 @@ |
|||
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 "" |
|||
) |
|||
|
|||
|
@ -0,0 +1,11 @@ |
|||
include(ExternalProject) |
|||
|
|||
ExternalProject_Add(miniupnpc |
|||
URL http://miniupnp.tuxfamily.org/files/download.php?file=miniupnpc-1.9.20141027.tar.gz |
|||
BINARY_DIR miniupnpc-prefix/src/miniupnpc |
|||
CONFIGURE_COMMAND "" |
|||
BUILD_COMMAND make -j 3 |
|||
INSTALL_COMMAND "" |
|||
) |
|||
|
|||
|
Loading…
Reference in new issue