mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-16 12:02:10 +01:00
34 lines
760 B
CMake
34 lines
760 B
CMake
|
include_directories(settings)
|
||
|
|
||
|
set( GreaseMonkey_SRCS
|
||
|
gm_plugin.cpp
|
||
|
gm_manager.cpp
|
||
|
gm_script.cpp
|
||
|
gm_downloader.cpp
|
||
|
gm_addscriptdialog.cpp
|
||
|
gm_notification.cpp
|
||
|
settings/gm_settings.cpp
|
||
|
settings/gm_settingslistdelegate.cpp
|
||
|
settings/gm_settingsscriptinfo.cpp
|
||
|
settings/gm_settingslistwidget.cpp
|
||
|
gm_icon.cpp
|
||
|
)
|
||
|
|
||
|
set( GreaseMonkey_UIS
|
||
|
gm_addscriptdialog.ui
|
||
|
gm_notification.ui
|
||
|
settings/gm_settings.ui
|
||
|
settings/gm_settingsscriptinfo.ui
|
||
|
)
|
||
|
qt5_wrap_ui(UIS ${GreaseMonkey_UIS})
|
||
|
|
||
|
set( GreaseMonkey_RSCS
|
||
|
greasemonkey.qrc
|
||
|
)
|
||
|
qt5_add_resources(RSCS ${GreaseMonkey_RSCS})
|
||
|
|
||
|
add_library(GreaseMonkey MODULE ${GreaseMonkey_SRCS} ${UIS} ${RSCS})
|
||
|
install(TARGETS GreaseMonkey DESTINATION ${KDE_INSTALL_PLUGINDIR})
|
||
|
target_link_libraries(GreaseMonkey FalkonPrivate)
|
||
|
|