mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
13 lines
349 B
CMake
13 lines
349 B
CMake
|
|
find_package(ActiveApp "0.1")
|
|
set_package_properties("ActiveApp" PROPERTIES
|
|
DESCRIPTION "Support for developing applications for Plasma Active"
|
|
URL "https://projects.kde.org/projects/extragear/base/plasma-mobile"
|
|
TYPE OPTIONAL)
|
|
|
|
if (ACTIVEAPP_FOUND)
|
|
add_subdirectory( app )
|
|
endif (ACTIVEAPP_FOUND)
|
|
|
|
add_subdirectory( components )
|
|
|