Skip to content

Commit 1870ef7

Browse files
committed
fix build fail in example
1 parent ff8fa82 commit 1870ef7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/iceberg/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,24 +55,24 @@ set(ICEBERG_SHARED_INSTALL_INTERFACE_LIBS)
5555

5656
list(APPEND
5757
ICEBERG_STATIC_BUILD_INTERFACE_LIBS
58-
nanoarrow::nanoarrow
58+
nanoarrow::nanoarrow_static
5959
nlohmann_json::nlohmann_json
6060
spdlog::spdlog
6161
ZLIB::ZLIB)
6262
list(APPEND
6363
ICEBERG_SHARED_BUILD_INTERFACE_LIBS
64-
nanoarrow::nanoarrow
64+
nanoarrow::nanoarrow_shared
6565
nlohmann_json::nlohmann_json
6666
spdlog::spdlog
6767
ZLIB::ZLIB)
6868
list(APPEND
6969
ICEBERG_STATIC_INSTALL_INTERFACE_LIBS
70-
"Iceberg::nanoarrow"
70+
"Iceberg::nanoarrow_static"
7171
"Iceberg::nlohmann_json"
7272
"$<IF:$<BOOL:${SPDLOG_VENDORED}>,Iceberg::spdlog,spdlog::spdlog>")
7373
list(APPEND
7474
ICEBERG_SHARED_INSTALL_INTERFACE_LIBS
75-
"Iceberg::nanoarrow"
75+
"Iceberg::nanoarrow_shared"
7676
"Iceberg::nlohmann_json"
7777
"$<IF:$<BOOL:${SPDLOG_VENDORED}>,Iceberg::spdlog,spdlog::spdlog>")
7878

0 commit comments

Comments
 (0)