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.
16 lines
458 B
16 lines
458 B
cmake_minimum_required(VERSION 2.8)
|
|
|
|
include(ExternalProject)
|
|
|
|
|
|
# all dependencies will be installed into this directory, separated by platform
|
|
string(TOLOWER ${CMAKE_SYSTEM_NAME} SYSTEM_NAME)
|
|
set(ETH_DEPENDENCY_INSTALL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/install/${SYSTEM_NAME}")
|
|
file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR})
|
|
|
|
include(cryptopp.cmake)
|
|
# will be re-eanbled later
|
|
# include(curl.cmake)
|
|
include(json-rpc-cpp.cmake)
|
|
#include(miniupnpc.cmake)
|
|
|
|
|