summaryrefslogtreecommitdiffstats
path: root/build-scripts
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-02-18 02:22:55 +0100
committerJay Berkenbilt <ejb@ql.org>2023-02-18 02:31:48 +0100
commit76189c44a2f656e6623a7d36519e406d488a9ee5 (patch)
tree5f7a2cd0a8fe02f5ba8d17837fa3d3f8995073a3 /build-scripts
parentd80b63c3c0c43fd6bd9e275c7979ecde57d30264 (diff)
downloadqpdf-76189c44a2f656e6623a7d36519e406d488a9ee5.tar.zst
Remove custom jpeg library installation for mac build
libjpeg development files are on the macos GitHub Actions build image now, and downloading our own version was causing conflicts.
Diffstat (limited to 'build-scripts')
-rwxr-xr-xbuild-scripts/build-mac7
1 files changed, 0 insertions, 7 deletions
diff --git a/build-scripts/build-mac b/build-scripts/build-mac
index 094de58f..89e2adf4 100755
--- a/build-scripts/build-mac
+++ b/build-scripts/build-mac
@@ -1,13 +1,6 @@
#!/bin/bash
set -ex
cd $(dirname $0)/..
-unzip qpdf-external-libs-src.zip
-tar xzf external-libs-src/jpegsrc*
-cd jpeg-*
-./configure
-make -k
-sudo make install
-cd ..
cmake -S . -B build -DCI_MODE=1 -DCMAKE_BUILD_TYPE=Release
cmake --build build --verbose -j$(sysctl -n hw.ncpu) -- -k
(cd build; ctest --verbose)