Skip to content

Commit

Permalink
Accept a pattern for windows_dll spec in cmake builds
Browse files Browse the repository at this point in the history
This is necessary for OpenSSL library for example because it could be libssl-1.1.dll or libssl-1.1-x64.dll
  • Loading branch information
nicolas-cellier-aka-nice committed Jan 11, 2021
1 parent dd2abe3 commit e455fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/ThirdPartyDependenciesMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function(INSTALL_THIRDPARTY_BUILD_ARTIFACTS ThirdpartyProjectName)
set(InstallLibraryGlobPatterns ${ARTIFACT_KIND_MAC_LIBRARIES_SYMLINK_PATTERNS})
elseif(WIN32)
set(InstallLibrarySourceFolder bin)
set(InstallLibraryFileNames ${ARTIFACT_KIND_WINDOWS_DLLS})
set(InstallLibraryGlobPaterns ${ARTIFACT_KIND_WINDOWS_DLLS})
else()
set(InstallLibraryFileNames ${ARTIFACT_KIND_LINUX_LIBRARIES})
set(InstallLibraryGlobPatterns ${ARTIFACT_KIND_LINUX_LIBRARIES_SYMLINK_PATTERNS})
Expand Down

0 comments on commit e455fe2

Please sign in to comment.