|
|
@ -6,7 +6,7 @@ include(eth_download.cmake) |
|
|
|
|
|
|
|
# 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}/install2/${_system_name}") |
|
|
|
set(ETH_DEPENDENCY_INSTALL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/install/${_system_name}") |
|
|
|
set(ETH_DEPENDENCY_SERVER "http://poc-7.ethdev.com/precompiled/${_system_name}") |
|
|
|
file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/lib) |
|
|
|
file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/include) |
|
|
@ -14,22 +14,22 @@ file(MAKE_DIRECTORY ${ETH_DEPENDENCY_INSTALL_DIR}/bin) |
|
|
|
|
|
|
|
if (ETH_COMPILE) |
|
|
|
# json-rpc-cpp and its dependencies |
|
|
|
#include(compile/jsoncpp.cmake) |
|
|
|
#include(compile/argtable2.cmake) |
|
|
|
#include(compile/curl.cmake) |
|
|
|
#include(compile/json-rpc-cpp.cmake) |
|
|
|
include(compile/jsoncpp.cmake) |
|
|
|
include(compile/argtable2.cmake) |
|
|
|
include(compile/curl.cmake) |
|
|
|
include(compile/json-rpc-cpp.cmake) |
|
|
|
|
|
|
|
# qt at its dependencies |
|
|
|
#include(compile/icu.cmake) |
|
|
|
#include(compile/jom.cmake) |
|
|
|
#include(compile/qt.cmake) |
|
|
|
include(compile/icu.cmake) |
|
|
|
include(compile/jom.cmake) |
|
|
|
include(compile/qt.cmake) |
|
|
|
|
|
|
|
# leveldb and its dependencies |
|
|
|
#include(compile/snappy.cmake) |
|
|
|
#include(compile/leveldb.cmake) |
|
|
|
include(compile/snappy.cmake) |
|
|
|
include(compile/leveldb.cmake) |
|
|
|
|
|
|
|
# cryptopp |
|
|
|
#include(compile/cryptopp.cmake) |
|
|
|
include(compile/cryptopp.cmake) |
|
|
|
|
|
|
|
# boost |
|
|
|
include(compile/boost.cmake) |
|
|
|