mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
3859fba07d
REVIEW: 130022 REVIEW: 126378
43 lines
1.1 KiB
CMake
43 lines
1.1 KiB
CMake
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/..
|
|
${CMAKE_CURRENT_BINARY_DIR}/../
|
|
)
|
|
|
|
|
|
if(NOT WIN32)
|
|
set_package_properties("KActivities" PROPERTIES
|
|
DESCRIPTION "Activities interface library"
|
|
URL "https://projects.kde.org/projects/kde/kdelibs/kactivities"
|
|
TYPE RECOMMENDED
|
|
PURPOSE "Required for Activities integration.")
|
|
endif()
|
|
|
|
# okular
|
|
|
|
set(okular_SRCS
|
|
main.cpp
|
|
okular_main.cpp
|
|
shell.cpp
|
|
shellutils.cpp
|
|
)
|
|
|
|
file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/../ui/data/icons/*-apps-okular.png")
|
|
ecm_add_app_icon(okular_SRCS ICONS ${ICONS_SRCS})
|
|
|
|
add_executable(okular ${okular_SRCS})
|
|
|
|
target_link_libraries(okular KF5::Parts KF5::WindowSystem)
|
|
|
|
if(NOT WIN32)
|
|
target_link_libraries(okular KF5::Activities)
|
|
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} )
|