diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-07-24 12:29:12 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-08-16 21:19:11 +0100 |
commit | 973a3b0c5dcbf6b3fd155b2dda4c2e94a0b0ee5f (patch) | |
tree | b514d11c15217400903355ba389930e2a510bba0 /src/test | |
parent | 84ac35cfd4dfa6f235f6e5a00b571846358f45ce (diff) |
cmake: Implement `install` build target
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index a3624065b2..a666a76f8f 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -217,3 +217,7 @@ function(add_all_test_targets) endfunction() add_all_test_targets() + +install(TARGETS test_bitcoin + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) |