okular/shell/CMakeLists.txt
Sune Vuorela 720e08220d Allow dbus to be disabled
In certain usecases, especially for non-linux desktop builds, the
advantage of of dbus is often limited. Provide a way to disable
building with dbus.

Note that this also disables the related functionalities of having a
second okular launch open the document in the first okular.

This also disables the unit tests that tests those features.
2023-07-18 07:53:42 +00:00

48 lines
1.1 KiB
CMake

include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/..
${CMAKE_CURRENT_BINARY_DIR}/../
)
# okular
set(okular_SRCS
main.cpp
okular_main.cpp
shell.cpp
shellutils.cpp
recentitemsmodel.cpp
welcomescreen.cpp
)
ki18n_wrap_ui(okular_SRCS
welcomescreen.ui)
file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/../icons/*-apps-okular.png")
ecm_add_app_icon(okular_SRCS ICONS ${ICONS_SRCS})
add_executable(okular ${okular_SRCS})
target_link_libraries(okular KF5::I18n KF5::Parts KF5::WindowSystem KF5::Crash KF5::IconThemes)
if (TARGET Qt5::DBus)
target_link_libraries(okular Qt5::DBus)
endif()
if(TARGET KF5::Activities)
target_compile_definitions(okular PUBLIC -DWITH_KACTIVITIES=1)
target_link_libraries(okular KF5::Activities)
endif()
if (HAVE_X11)
target_link_libraries(okular Qt5::X11Extras)
endif()
install(TARGETS okular ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
# okular shell data files
install( PROGRAMS org.kde.okular.desktop DESTINATION ${KDE_INSTALL_APPDIR} )
install( FILES shell.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/okular )
install( FILES org.kde.okular.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR} )