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
David PHAM-VAN
2021-04-23 06:52:43 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0aff88f463d431b92a7c024a2307825cd2a43136
0aff88f4
1 parent
07ee9061
Fix Windows build
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
printing/CHANGELOG.md
printing/windows/CMakeLists.txt
printing/windows/DownloadProject.CMakeLists.cmake.in
printing/CHANGELOG.md
View file @
0aff88f
...
...
@@ -7,6 +7,7 @@
-
Fix Scrollbar positionning and default margins
-
Add shouldRepaint parameter
-
Fix icon colors
-
Fix Windows build
## 5.1.0
...
...
printing/windows/CMakeLists.txt
View file @
0aff88f
...
...
@@ -17,6 +17,13 @@ set(PROJECT_NAME "printing")
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
ARCH
"x64"
)
set
(
PDFIUM_VERSION
"4475"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-windows-
${
ARCH
}
.zip"
)
else
()
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium%2F
${
PDFIUM_VERSION
}
/pdfium-windows-
${
ARCH
}
.zip"
)
endif
()
# Download pdfium
include
(
../windows/DownloadProject.cmake
)
...
...
@@ -24,7 +31,7 @@ download_project(
PROJ
pdfium
URL
https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-windows-
${
ARCH
}
.zip
${
PDFIUM_URL
}
)
# This value is used when generating builds using this plugin, so it must not be
...
...
printing/windows/DownloadProject.CMakeLists.cmake.in
View file @
0aff88f
# Distributed under the OSI-approved MIT License. See accompanying
# file LICENSE or https://github.com/Crascit/DownloadProject for details.
cmake_minimum_required(VERSION
2.8.2
)
cmake_minimum_required(VERSION
3.15
)
project(${DL_ARGS_PROJ}-download NONE)
...
...
Please
register
or
login
to post a comment