Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 130 Lines • ▼ Show 20 Lines | |||||
| add_subdirectory(src) | add_subdirectory(src) | ||||
| option(BUILD_BITCOIN_CHRONIK "Activate the Chronik indexer" OFF) | option(BUILD_BITCOIN_CHRONIK "Activate the Chronik indexer" OFF) | ||||
| option(BUILD_BITCOIN_CHRONIK_PLUGINS "Activate the plugin system for Chronik" OFF) | option(BUILD_BITCOIN_CHRONIK_PLUGINS "Activate the plugin system for Chronik" OFF) | ||||
| if(BUILD_BITCOIN_CHRONIK) | if(BUILD_BITCOIN_CHRONIK) | ||||
| add_subdirectory(chronik) | add_subdirectory(chronik) | ||||
| endif() | endif() | ||||
| option(BUILD_BITCOIN_IGUANA "Activate the Iguana debugger" ON) | |||||
| if(BUILD_BITCOIN_IGUANA) | |||||
| add_subdirectory(iguana) | |||||
| endif() | |||||
| add_subdirectory(test) | add_subdirectory(test) | ||||
| add_subdirectory(electrum) | add_subdirectory(electrum) | ||||
| add_subdirectory(contrib) | add_subdirectory(contrib) | ||||
| add_subdirectory(doc) | add_subdirectory(doc) | ||||
| include(PackageOptions.cmake) | include(PackageOptions.cmake) | ||||