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 74a76cc commit e4892beCopy full SHA for e4892be
llvm/cmake/modules/Findzstd.cmake
@@ -12,6 +12,9 @@
12
13
if(MSVC OR "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "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