mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-01-06 11:00:10 -06:00
15 lines
523 B
CMake
15 lines
523 B
CMake
# Copyright 2025 XTX Markets Technologies Limited
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
include_directories(${ternfs_SOURCE_DIR}/core ${ternfs_SOURCE_DIR}/shard ${ternfs_SOURCE_DIR}/registry)
|
|
|
|
add_executable(tests tests.cpp doctest.h)
|
|
target_link_libraries(tests PRIVATE core shard cdc)
|
|
|
|
add_executable(logsdbtests logsdbtests.cpp doctest.h)
|
|
target_link_libraries(logsdbtests PRIVATE core)
|
|
|
|
add_executable(registrydbtests registrydbtests.cpp doctest.h)
|
|
target_link_libraries(registrydbtests PRIVATE core registry)
|