Skip to content

Commit

Permalink
Fix audit issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cantunca committed May 17, 2023
1 parent 21e8ac1 commit 354ff9e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Formula/maplibre-gl-native.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ class MaplibreGlNative < Formula
end

def install
system "cmake", "-S", ".", "-B", "build", "-G", "Ninja", "-DMBGL_WITH_QT=ON", "-DMBGL_QT_LIBRARY_ONLY=ON", \
"-DCMAKE_C_COMPILER=clang", "-DCMAKE_CXX_COMPILER=clang++", "-DMBGL_WITH_WERROR=OFF", "-DMBGL_QT_WITH_INTERNAL_SQLITE=ON", *std_cmake_args
system "cmake", "-S", ".", "-B", "build", "-G", "Ninja",
"-DMBGL_WITH_QT=ON", "-DMBGL_QT_LIBRARY_ONLY=ON",
"-DCMAKE_C_COMPILER=clang", "-DCMAKE_CXX_COMPILER=clang++",
"-DMBGL_WITH_WERROR=OFF", "-DMBGL_QT_WITH_INTERNAL_SQLITE=ON", *std_cmake_args
system "cmake", "--build", "build", "--target", "qmaplibregl"
system "cmake", "--install", "build"
end
Expand Down

0 comments on commit 354ff9e

Please sign in to comment.