-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add CGO tests * Try to install libjpegturbo * Conditionally install libjpeg turbo * Always build with libjpeg turbo * Drop sudo for drew * Add libturbojpeg-dev for linux * Disable CGO for webassembly builds * Improve workflows * Fix library install * Install pkgconfig * Try to find jpeg turbo * Copy header file * Compile libjpegturbo * Change cd in workflow * Fix? * Fix paths * Fix turbo include path * Add start of windows support * Fix windows pdfium download * Try to fix exe * Fix windows build * Try to add include libjpegturbo header * Try to add include libjpegturbo header * Test * Try to install libjpeg turbo * Try to install libjpeg turbo * Add bin path to cgoflags * Try to fix windows * Split op linux cgo and linux musl cgo * Fix linux build * Update readme * Rename workflows, add native workflows * Update readme * Add sleep for libjpeg turbo silent install * Update tests * Try to fix pkgconfig for windows * Add jpegturbo pkg config for musl * Fix libjpegturbo build * Temporarily build artifacts for normal builds * Add more builds * Remove builds
- Loading branch information
Showing
7 changed files
with
405 additions
and
42 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
prefix=/opt/libjpegturbo/libjpeg-turbo-3.0.0 | ||
libdir=/opt/libjpegturbo/libjpeg-turbo-3.0.0/build | ||
includedir=/opt/libjpegturbo/libjpeg-turbo-3.0.0 | ||
|
||
Name: libturbojpeg | ||
Description: A SIMD-accelerated JPEG codec that provides the TurboJPEG API | ||
Version: 3.0.0 | ||
Libs: -L${libdir} -lturbojpeg | ||
Cflags: -I${includedir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
prefix=D:/opt/pdfium | ||
libdir=D:/opt/pdfium/bin | ||
includedir=D:/opt/pdfium/include | ||
|
||
Name: PDFium | ||
Description: PDFium | ||
Version: 6029 | ||
Requires: | ||
|
||
Libs: -L${libdir} -lpdfium | ||
Cflags: -I${includedir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
prefix=/opt/pdfium | ||
libdir=/opt/pdfium/lib | ||
includedir=/opt/pdfium/include | ||
|
||
Name: PDFium | ||
Description: PDFium | ||
Version: 6029 | ||
Requires: | ||
|
||
Libs: -L${libdir} -lpdfium | ||
Cflags: -I${includedir} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.