Files
bitcoin/src/test/kernel/CMakeLists.txt
sedited 89386e700e kernel: Use fs:: namespace and unicode path in kernel tests
Add support for unicode characters in paths to the kernel tests by using
our fs:: wrappers for std::filesystem calls and adding the windows
application manifest to the binary. This exercises their handling
through the kernel API.
2026-03-04 16:03:39 +01:00

15 lines
247 B
CMake

add_executable(test_kernel
test_kernel.cpp
)
target_link_libraries(test_kernel
PRIVATE
core_interface
bitcoinkernel
Boost::headers
)
add_windows_application_manifest(test_kernel)
add_test(NAME test_kernel COMMAND test_kernel)