Skip to content
This repository was archived by the owner on Dec 29, 2025. It is now read-only.

Commit b3fe158

Browse files
authored
Use proper suffix for shared library file (#118)
On macOS, the file was named `clickhouse_fdw.so` but should be `clickhouse_fdw.dylib`. This change seems to fix the issue by setting the suffix to the platform default.
1 parent 5bdf0c2 commit b3fe158

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ endif()
5151
set_target_properties (clickhouse_fdw PROPERTIES
5252
OUTPUT_NAME "clickhouse_fdw"
5353
PREFIX ""
54+
SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX}
5455
)
5556
set_target_properties(clickhouse_fdw PROPERTIES
5657
BUILD_WITH_INSTALL_RPATH TRUE

0 commit comments

Comments
 (0)