Warning, /network/falkon/src/plugins/AutoScroll/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set( AutoScroll_SRCS
0002         autoscrollplugin.cpp
0003         autoscroller.cpp
0004         framescroller.cpp
0005         autoscrollsettings.cpp
0006         autoscrollplugin.h
0007         autoscroller.h
0008         framescroller.h
0009         autoscrollsettings.h
0010         )
0011 
0012 ecm_create_qm_loader( AutoScroll_SRCS falkon_autoscroll_qt )
0013 
0014 set( AutoScroll_UIS
0015         autoscrollsettings.ui
0016         )
0017 qt_wrap_ui(UIS ${AutoScroll_UIS})
0018 
0019 set( AutoScroll_RSCS
0020         autoscroll.qrc
0021         )
0022 qt_add_resources(RSCS ${AutoScroll_RSCS})
0023 
0024 add_library(AutoScroll MODULE ${AutoScroll_SRCS} ${UIS} ${RSCS})
0025 install(TARGETS AutoScroll DESTINATION ${FALKON_INSTALL_PLUGINDIR})
0026 target_link_libraries(AutoScroll FalkonPrivate)
0027