mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-27 23:38:08 +00:00
13 lines
266 B
CMake
13 lines
266 B
CMake
option(
|
|
validator_keys
|
|
"Enables building of the validator-keys tool as a separate target"
|
|
OFF
|
|
)
|
|
|
|
if(validator_keys)
|
|
add_subdirectory(src/tools/validator-keys)
|
|
if(tests)
|
|
add_subdirectory(src/tests/tools/validator-keys)
|
|
endif()
|
|
endif()
|