We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be33696 commit 6001370Copy full SHA for 6001370
CMakeLists.txt
@@ -166,6 +166,9 @@ endif()
166
if(WIN32)
167
target_link_libraries(${EXTENSION_NAME} ws2_32 userenv bcrypt ntdll)
168
target_link_libraries(${LOADABLE_EXTENSION_NAME} ws2_32 userenv bcrypt ntdll)
169
+ # Avoid import lib name collision with Rust staticlib (yardstick.lib).
170
+ set_target_properties(${LOADABLE_EXTENSION_NAME} PROPERTIES
171
+ ARCHIVE_OUTPUT_NAME "${TARGET_NAME}_loadable")
172
endif()
173
174
install(
0 commit comments