diff --git a/CMakeLists.txt b/CMakeLists.txt index 7dedde5fdd232..375a5eea0b23d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,6 +69,7 @@ tristate_option(WITH_USDT option(BUILD_TESTS "Build test_bitcoin executable." ON) option(BUILD_BENCH "Build bench_bitcoin executable." ON) +option(INSTALL_MAN "Install man pages." ON) if(CXX20) set(CMAKE_CXX_STANDARD 20) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 26366d8e628b0..716d0e843d1bc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,6 +2,8 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +include(GNUInstallDirs) + configure_file(${CMAKE_SOURCE_DIR}/cmake/bitcoin-config.h.in config/bitcoin-config.h @ONLY) add_compile_definitions(HAVE_CONFIG_H) include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) @@ -101,6 +103,7 @@ target_link_libraries(bitcoin_common ) +set(installable_targets) if(ENABLE_WALLET) add_subdirectory(wallet) @@ -117,6 +120,7 @@ if(ENABLE_WALLET) bitcoin_util Boost::headers ) + list(APPEND installable_targets bitcoin-wallet) endif() endif() @@ -246,6 +250,7 @@ if(BUILD_DAEMON) core bitcoin_node ) + list(APPEND installable_targets bitcoind) endif() @@ -270,6 +275,7 @@ if(BUILD_CLI) bitcoin_util libevent::libevent ) + list(APPEND installable_targets bitcoin-cli) endif() @@ -281,6 +287,7 @@ if(BUILD_TX) bitcoin_util univalue ) + list(APPEND installable_targets bitcoin-tx) endif() @@ -291,6 +298,7 @@ if(BUILD_UTIL) bitcoin_common bitcoin_util ) + list(APPEND installable_targets bitcoin-util) endif() @@ -302,3 +310,17 @@ endif() if(BUILD_TESTS) add_subdirectory(test) endif() + + +install(TARGETS ${installable_targets} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) +unset(installable_targets) + +if(INSTALL_MAN) + # TODO: these stubs are no longer needed. man pages should be generated at install time. + install(DIRECTORY ../doc/man/ + DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 + FILES_MATCHING PATTERN *.1 + ) +endif() diff --git a/src/bench/CMakeLists.txt b/src/bench/CMakeLists.txt index 3e9b144c77c70..969748c4280d7 100644 --- a/src/bench/CMakeLists.txt +++ b/src/bench/CMakeLists.txt @@ -67,3 +67,7 @@ if(ENABLE_WALLET) ) target_link_libraries(bench_bitcoin bitcoin_wallet) endif() + +install(TARGETS bench_bitcoin + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index eb3969672c3d3..c23c6c28d80fc 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -174,3 +174,7 @@ if(ENABLE_WALLET) target_sources(test_bitcoin PRIVATE ../wallet/test/db_tests.cpp) endif() endif() + +install(TARGETS test_bitcoin + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +)