Skip to content

Commit 4eb6181

Browse files
authored
[PTI-LIB] Make required spdlog version same that pti download (#733)
Signed-off-by: Julia Fedorova <[email protected]>
1 parent 223cc8e commit 4eb6181

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/cmake/Modules/macros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ set(SPDLOG_GABIME_URL "https://github.com/gabime/spdlog/archive/refs/tags/v1.15.
9999
set(SPDLOG_GABIME_SHA256 "9962648c9b4f1a7bbc76fd8d9172555bad1871fdb14ff4f842ef87949682caa5")
100100
macro(GetSpdlog)
101101
if(NOT TARGET spdlog::spdlog)
102-
find_package(spdlog 1.6.0 QUIET)
102+
find_package(spdlog 1.15.0 QUIET)
103103
endif()
104104

105105
if(NOT TARGET spdlog::spdlog)

sdk/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ enable_testing()
99
include(GoogleTest)
1010

1111
if (NOT TARGET fmt::fmt)
12-
find_package(fmt REQUIRED)
12+
message(FATAL_ERROR "fmt::fmt target not found. GetSpdlog() should have been called in the main CMakeLists.txt")
1313
endif()
1414

1515
if (NOT TARGET spdlog::spdlog)

0 commit comments

Comments
 (0)