Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tiledb/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ set(TILEDB_COMMON_SOURCES ${COMMON_SOURCES} PARENT_SCOPE)
commence(object_library assert)
this_target_sources(assert.cc)
# can be removed when c++20 `<format>` is consistently supported
find_package(fmt REQUIRED)
target_link_libraries(assert PUBLIC fmt::fmt)
find_package(spdlog REQUIRED)
target_link_libraries(assert PUBLIC spdlog::spdlog)
conclude(object_library)

#
Expand Down
2 changes: 1 addition & 1 deletion tiledb/common/assert.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
#ifndef TILEDB_ASSERT_H
#define TILEDB_ASSERT_H

#include <fmt/format.h>
#include <spdlog/fmt/fmt.h>
#include <cstdlib>
#include <functional>
#include <iostream>
Expand Down
Loading