1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

Utilities: Add a pdf utility

This utility will learn tricks such as extracting images from PDFs and
dumping tables from PDFs so that we can create code from specs.

It also allows testing LibPDF things in lagom, and allows testing
reading large amounts of PDFs using a shell script.
This commit is contained in:
Nico Weber 2023-06-26 20:42:10 -04:00 committed by Andreas Kling
parent e7e454f1d6
commit efad31dac1
3 changed files with 51 additions and 0 deletions

View file

@ -555,6 +555,9 @@ if (BUILD_LAGOM)
target_link_libraries(ntpquery LibCore LibMain)
endif()
add_executable(pdf ../../Userland/Utilities/pdf.cpp)
target_link_libraries(pdf LibCore LibPDF LibMain)
add_executable(sql ../../Userland/Utilities/sql.cpp)
target_link_libraries(sql LibCore LibFileSystem LibIPC LibLine LibMain LibSQL)