Skip to content

Commit b03e4f4

Browse files
author
nullccxsy
committed
add spdlog
1 parent 0830202 commit b03e4f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: Install dependencies
8484
shell: cmd
8585
run: |
86-
vcpkg install zlib:x64-windows nlohmann-json:x64-windows nanoarrow:x64-windows
86+
vcpkg install zlib:x64-windows nlohmann-json:x64-windows nanoarrow:x64-windows spdlog:x64-windows
8787
- name: Build Iceberg
8888
shell: cmd
8989
run: |

src/iceberg/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ list(APPEND
7474
ICEBERG_STATIC_INSTALL_INTERFACE_LIBS
7575
"$<IF:$<BOOL:${NANOARROW_VENDORED}>,Iceberg::nanoarrow_static,$<IF:$<TARGET_EXISTS:nanoarrow::nanoarrow_static>,nanoarrow::nanoarrow_static,nanoarrow::nanoarrow_shared>>"
7676
"$<IF:$<BOOL:${NLOHMANN_JSON_VENDORED}>,Iceberg::nlohmann_json,$<IF:$<TARGET_EXISTS:nlohmann_json::nlohmann_json>,nlohmann_json::nlohmann_json,nlohmann_json::nlohmann_json>>"
77-
"$<IF:$<BOOL:${SPDLOG_VENDORED}>,Iceberg::spdlog,spdlog::spdlog>")
77+
"spdlog::spdlog")
7878
list(APPEND
7979
ICEBERG_SHARED_INSTALL_INTERFACE_LIBS
8080
"$<IF:$<BOOL:${NANOARROW_VENDORED}>,Iceberg::nanoarrow_shared,$<IF:$<TARGET_EXISTS:nanoarrow::nanoarrow_shared>,nanoarrow::nanoarrow_shared,nanoarrow::nanoarrow_static>>"
8181
"$<IF:$<BOOL:${NLOHMANN_JSON_VENDORED}>,Iceberg::nlohmann_json,$<IF:$<TARGET_EXISTS:nlohmann_json::nlohmann_json>,nlohmann_json::nlohmann_json,nlohmann_json::nlohmann_json>>"
82-
"$<IF:$<BOOL:${SPDLOG_VENDORED}>,Iceberg::spdlog,spdlog::spdlog>")
82+
"spdlog::spdlog")
8383

8484
add_iceberg_lib(iceberg
8585
SOURCES

0 commit comments

Comments
 (0)