mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
51 lines
No EOL
1.8 KiB
CMake
51 lines
No EOL
1.8 KiB
CMake
@PACKAGE_INIT@
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/modules/")
|
|
include("${CMAKE_CURRENT_LIST_DIR}/MoneroTargets.cmake")
|
|
|
|
find_package(Threads)
|
|
find_package(Backtrace)
|
|
find_package(PythonInterp)
|
|
find_package(miniupnpc REQUIRED)
|
|
find_package(ZMQ REQUIRED)
|
|
|
|
find_package(OpenSSL REQUIRED)
|
|
find_package(Boost 1.58 REQUIRED COMPONENTS system filesystem thread date_time chrono regex serialization program_options locale)
|
|
find_package(Libunbound 1.16 REQUIRED)
|
|
find_package(sodium REQUIRED)
|
|
|
|
check_required_components(epee)
|
|
check_required_components(easylogging)
|
|
check_required_components(qrcodegen)
|
|
check_required_components(lmdb)
|
|
check_required_components(cncrypto)
|
|
check_required_components(version)
|
|
check_required_components(common)
|
|
check_required_components(lmdb_lib)
|
|
check_required_components(randomx)
|
|
check_required_components(cryptonote_format_utils_basic)
|
|
check_required_components(monero-crypto-amd64-64-24k)
|
|
check_required_components(wallet-crypto)
|
|
check_required_components(ringct)
|
|
check_required_components(cryptonote_basic)
|
|
check_required_components(ringct_basic)
|
|
check_required_components(checkpoints)
|
|
check_required_components(blockchain_db)
|
|
check_required_components(cryptonote_core)
|
|
check_required_components(cryptonote_protocol)
|
|
check_required_components(mnemonics)
|
|
check_required_components(device)
|
|
check_required_components(blocks)
|
|
check_required_components(wallet)
|
|
check_required_components(wallet_api)
|
|
check_required_components(rpc_base)
|
|
check_required_components(rpc)
|
|
check_required_components(rpc_pub)
|
|
check_required_components(daemon_messages)
|
|
check_required_components(daemon_rpc_server)
|
|
check_required_components(net)
|
|
check_required_components(p2p)
|
|
check_required_components(multisig)
|
|
check_required_components(hardforks)
|
|
check_required_components(daemonizer)
|
|
check_required_components(serialization) |