1
0
mirror of https://github.com/apple/foundationdb.git synced 2025-06-02 03:12:12 +08:00

ApiTester: fix build dependencies

This commit is contained in:
Vaidas Gasiunas 2022-03-04 16:50:50 +01:00
parent ef96231db0
commit 20c1e893c7
5 changed files with 6 additions and 3 deletions

@ -163,7 +163,7 @@ if(NOT WIN32 AND NOT IS_ARM_MAC)
target_link_libraries(fdb_c_unit_tests_version_510 PRIVATE fdb_c Threads::Threads)
target_link_libraries(trace_partial_file_suffix_test PRIVATE fdb_c Threads::Threads flow)
target_link_libraries(disconnected_timeout_unit_tests PRIVATE fdb_c Threads::Threads)
target_link_libraries(fdb_c_api_tester PRIVATE fdb_c toml11_target Threads::Threads)
target_link_libraries(fdb_c_api_tester PRIVATE fdb_c toml11_target Threads::Threads fmt::fmt boost_target)
# do not set RPATH for mako
set_property(TARGET mako PROPERTY SKIP_BUILD_RPATH TRUE)

@ -19,7 +19,7 @@
*/
#include "TesterApiWrapper.h"
#include <cstdint>
#include <fmt/printf.h>
#include <fmt/format.h>
namespace FdbApiTester {

@ -22,6 +22,7 @@
#include "TesterUtil.h"
#include <toml.hpp>
#include <fmt/format.h>
#include <functional>
namespace FdbApiTester {

@ -23,6 +23,8 @@
#include "test/apitester/TesterScheduler.h"
#include <memory>
#include <unordered_map>
#include <mutex>
#include <atomic>
namespace FdbApiTester {

@ -30,7 +30,7 @@
#include <memory>
#include <stdexcept>
#include <thread>
#include <fmt/core.h>
#include <fmt/format.h>
namespace FdbApiTester {