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.

22 lines
615 B

cmake_minimum_required(VERSION 2.8)
include(ExternalProject)
# all dependencies will be installed into this directory, separated by platform
10 years ago
string(TOLOWER ${CMAKE_SYSTEM_NAME} _system_name)
set(ETH_DEPENDENCY_INSTALL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/install/${_system_name}")
10 years ago
file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/lib)
file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/include)
10 years ago
include(curl.cmake)
include(jsoncpp.cmake)
include(argtable2.cmake)
include(json-rpc-cpp.cmake)
include(cryptopp.cmake)
include(snappy.cmake)
include(leveldb.cmake)
# will be re-eanbled later
# include(miniupnpc.cmake)
10 years ago