mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 15:25:08 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
16 lines
288 B
CMake
16 lines
288 B
CMake
serenity_component(
|
|
PDFViewer
|
|
TARGETS PDFViewer
|
|
)
|
|
|
|
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)
|