You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcutefish/system/CMakeLists.txt

19 lines
438 B
CMake

set(SCREEN_SRCS
wallpaper.cpp
wallpaper.h
plugin.cpp
)
find_package(Qt5 REQUIRED COMPONENTS DBus)
add_library(cutefishsystem_qmlplugins SHARED ${SCREEN_SRCS})
target_link_libraries (cutefishsystem_qmlplugins
Qt5::Core
Qt5::Quick
Qt5::Gui
Qt5::DBus
)
install(TARGETS cutefishsystem_qmlplugins DESTINATION ${INSTALL_QMLDIR}/Cutefish/System)
install(FILES qmldir DESTINATION ${INSTALL_QMLDIR}/Cutefish/System)