Skip to content

Commit e455fe2

Browse files
Accept a pattern for windows_dll spec in cmake builds
This is necessary for OpenSSL library for example because it could be libssl-1.1.dll or libssl-1.1-x64.dll
1 parent dd2abe3 commit e455fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/ThirdPartyDependenciesMacros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function(INSTALL_THIRDPARTY_BUILD_ARTIFACTS ThirdpartyProjectName)
170170
set(InstallLibraryGlobPatterns ${ARTIFACT_KIND_MAC_LIBRARIES_SYMLINK_PATTERNS})
171171
elseif(WIN32)
172172
set(InstallLibrarySourceFolder bin)
173-
set(InstallLibraryFileNames ${ARTIFACT_KIND_WINDOWS_DLLS})
173+
set(InstallLibraryGlobPaterns ${ARTIFACT_KIND_WINDOWS_DLLS})
174174
else()
175175
set(InstallLibraryFileNames ${ARTIFACT_KIND_LINUX_LIBRARIES})
176176
set(InstallLibraryGlobPatterns ${ARTIFACT_KIND_LINUX_LIBRARIES_SYMLINK_PATTERNS})

0 commit comments

Comments
 (0)