mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-09 07:08:25 +02:00
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.
15 lines
247 B
CMake
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)
|