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-09-04 12:16:05 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0be8f479ba44ab8c75a790c278e33079dbe67964
0be8f479
1 parent
08571ad2
Fix linux release build
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
printing/CHANGELOG.md
printing/linux/CMakeLists.txt
printing/CHANGELOG.md
View file @
0be8f47
...
...
@@ -6,6 +6,7 @@
-
Fix typo in README
-
Fix iOS build warning
-
Fix pdfium memory leak
-
Fix error while loading shared libraries on Linux
## 5.5.0
...
...
printing/linux/CMakeLists.txt
View file @
0be8f47
...
...
@@ -58,6 +58,14 @@ target_include_directories(${PLUGIN_NAME}
target_link_libraries
(
${
PLUGIN_NAME
}
PRIVATE flutter
)
target_link_libraries
(
${
PLUGIN_NAME
}
PRIVATE PkgConfig::GTK PkgConfig::GTKUnixPrint
)
target_link_libraries
(
${
PLUGIN_NAME
}
PRIVATE pdfium
)
get_filename_component
(
PDFium_lib_path
"
${
PDFium_LIBRARY
}
"
DIRECTORY
)
set_target_properties
(
${
PLUGIN_NAME
}
PROPERTIES SKIP_BUILD_RPATH
FALSE
BUILD_WITH_INSTALL_RPATH
TRUE
INSTALL_RPATH
"$ORIGIN:
${
PDFium_lib_path
}
"
)
# List of absolute paths to libraries that should be bundled with the plugin
set
(
printing_bundled_libraries
...
...
Please
register
or
login
to post a comment