1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-31 09:32:43 +00:00
serenity/Userland/Applications/PDFViewer/CMakeLists.txt
Matthew Olsson cf3eb27108 PDFViewer: Add a toolbar
The toolbar has an option to toggle the sidebar, a number input to
set the current page, and two buttons to go up and down by one page
2021-05-25 00:24:09 +04:30

11 lines
229 B
CMake

set(SOURCES
NumericInput.cpp
OutlineModel.cpp
PDFViewer.cpp
PDFViewerWidget.cpp
SidebarWidget.cpp
main.cpp
)
serenity_app(PDFViewer ICON app-pdf-viewer)
target_link_libraries(PDFViewer LibGUI LibPDF)