Skip to content

Commit

Permalink
Downgrade spdlog to 1.14.1
Browse files Browse the repository at this point in the history
This is because 1.15.0 was released on November 9, 2024. But Conan 1.x
stop receiving updated on November 4, 2024.
  • Loading branch information
iyanmv committed Jan 9, 2025
1 parent 51d1efc commit 4bca76d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/conan_utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ macro(setup_conan)
# Right now every dependency shall be static
set(CONAN_OPTIONS ${CONAN_OPTIONS} "*:shared=False")

set(REQUIREMENTS nlohmann_json/3.11.3 spdlog/1.15.0)
set(REQUIREMENTS nlohmann_json/3.11.3 spdlog/1.14.1)
list(APPEND AER_CONAN_LIBS nlohmann_json spdlog)
if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang")
list(APPEND AER_CONAN_LIBS llvm-openmp)
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependency_utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ endmacro()
macro(_use_system_libraries)
# Use system libraries
_import_aer_system_dependency(nlohmann_json 3.11.3)
_import_aer_system_dependency(spdlog 1.15.0)
_import_aer_system_dependency(spdlog 1.14.1)

if(AER_THRUST_BACKEND AND NOT AER_THRUST_BACKEND STREQUAL "CUDA")
string(TOLOWER ${AER_THRUST_BACKEND} THRUST_BACKEND)
Expand Down

0 comments on commit 4bca76d

Please sign in to comment.