We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f022218 commit be3268bCopy full SHA for be3268b
llvm/cmake/modules/Findzstd.cmake
@@ -12,6 +12,9 @@
12
13
if(MSVC)
14
set(zstd_STATIC_LIBRARY_SUFFIX "_static\\${CMAKE_STATIC_LIBRARY_SUFFIX}$")
15
+elseif(WIN32)
16
+ set(zstd_SHARED_LIBRARY_SUFFIX "\\${CMAKE_SHARED_LIBRARY_SUFFIX}$")
17
+ set(zstd_STATIC_LIBRARY_SUFFIX ".lib")
18
else()
19
set(zstd_STATIC_LIBRARY_SUFFIX "\\${CMAKE_STATIC_LIBRARY_SUFFIX}$")
20
endif()
0 commit comments