Skip to content

Commit

Permalink
Fix DuckDB library linking in CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Apr 24, 2024
1 parent 3f09786 commit d24f953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extension/duckdb_scanner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set_target_properties(duckdb_scanner
if (WIN32)
target_link_libraries(duckdb_scanner
PRIVATE
${DuckDB_LIBRIES})
${DuckDB_LIBRARIES})
else()
target_link_libraries(duckdb_scanner
PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion extension/postgres_scanner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ set_target_properties(postgres_scanner
if (WIN32)
target_link_libraries(duckdb_scanner
PRIVATE
${DuckDB_LIBRIES})
${DuckDB_LIBRARIES})
else()
target_link_libraries(duckdb_scanner
PRIVATE
Expand Down

0 comments on commit d24f953

Please sign in to comment.