mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-05 21:21:17 +00:00
Remove CMake settings that are no longer needed after reordering Guix build script to perform binary checks after installation. Also removes unused CMake maintenance targets (check-security and check-symbols) and updates security checks to include libexec/ directory binaries (see PR #31679).
13 lines
200 B
CMake
13 lines
200 B
CMake
add_executable(test_kernel
|
|
test_kernel.cpp
|
|
)
|
|
|
|
target_link_libraries(test_kernel
|
|
PRIVATE
|
|
core_interface
|
|
bitcoinkernel
|
|
Boost::headers
|
|
)
|
|
|
|
add_test(NAME test_kernel COMMAND test_kernel)
|