Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jon Salmon
2021-10-31 21:47:51 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
David PHAM-VAN
2021-11-04 10:47:25 -0300
Commit
8b9a5eb10c9492708ccb6eace2ccd074e82379a8
8b9a5eb1
1 parent
1921b0ab
Add pdfium version override to linux
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
printing/linux/CMakeLists.txt
printing/linux/CMakeLists.txt
View file @
8b9a5eb
...
...
@@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.10)
set
(
PROJECT_NAME
"printing"
)
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
PDFIUM_VERSION
"4627"
)
set
(
PDFIUM_VERSION
"4627"
CACHE STRING
"Version of pdfium used"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
set
(
...
...
@@ -26,7 +26,7 @@ if(${PDFIUM_VERSION} STREQUAL "latest")
else
()
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium
%2F
${
PDFIUM_VERSION
}
/pdfium-linux.tgz"
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium
/
${
PDFIUM_VERSION
}
/pdfium-linux.tgz"
)
endif
()
...
...
Please
register
or
login
to post a comment