Skip to content

Commit

Permalink
Removed brotli libraries lookup from msys configuration (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx authored Mar 21, 2024
1 parent bf7021d commit 003e33f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,11 @@ if(PKG_CONFIG_FOUND)
pkg_check_modules(FUSE3 IMPORTED_TARGET fuse3>=3.9.0)
pkg_check_modules(LIBLZ4 IMPORTED_TARGET liblz4>=1.9.2)
pkg_check_modules(LIBLZMA IMPORTED_TARGET liblzma>=5.2.4)
pkg_check_modules(LIBBROTLIDEC IMPORTED_TARGET libbrotlidec>=1.0.7)
pkg_check_modules(LIBBROTLIENC IMPORTED_TARGET libbrotlienc>=1.0.7)
pkg_check_modules(LIBBROTLICOMMON IMPORTED_TARGET libbrotlicommon>=1.0.7)
if(NOT IS_MSYS)
pkg_check_modules(LIBBROTLIDEC IMPORTED_TARGET libbrotlidec>=1.0.7)
pkg_check_modules(LIBBROTLIENC IMPORTED_TARGET libbrotlienc>=1.0.7)
pkg_check_modules(LIBBROTLICOMMON IMPORTED_TARGET libbrotlicommon>=1.0.7)
endif(NOT IS_MSYS)
if (MSVC)
pkg_check_modules(LIBARCHIVE IMPORTED_TARGET libarchive>=3.6.0)
endif(MSVC)
Expand Down

0 comments on commit 003e33f

Please sign in to comment.