ad5e59fdeb
Now we have support for anchor layout on javascript plasmoids. This is at 90%. It's not working properly yet as we need either a patch in Qt (being discussed) or another not so beautiful approach. After this it will work 98%, and I'll just need to do the QGraphicsAnchor bindings to support spacing and size policies of anchors. svn path=/trunk/KDE/kdebase/runtime/; revision=1044107
71 lines
2.1 KiB
CMake
71 lines
2.1 KiB
CMake
# APPLET
|
|
|
|
set(simple_javascript_engine_SRCS
|
|
simplejavascriptapplet.cpp
|
|
appletinterface.cpp
|
|
uiloader.cpp
|
|
qtgui/font.cpp
|
|
qtgui/graphicsitem.cpp
|
|
qtgui/linearlayout.cpp
|
|
qtgui/anchorlayout.cpp
|
|
qtgui/painter.cpp
|
|
qtgui/pixmap.cpp
|
|
qtgui/point.cpp
|
|
qtgui/rect.cpp
|
|
qtgui/size.cpp
|
|
qtgui/timer.cpp
|
|
qtgui/url.cpp
|
|
)
|
|
|
|
include_directories(${PHONON_INCLUDES})
|
|
|
|
|
|
kde4_add_plugin(plasma_appletscript_simple_javascript ${simple_javascript_engine_SRCS})
|
|
|
|
target_link_libraries(plasma_appletscript_simple_javascript
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_PLASMA_LIBS}
|
|
${QT_QTSCRIPT_LIBRARY}
|
|
${QT_QTUITOOLS_LIBRARY}
|
|
${QT_QTXML_LIBRARY}
|
|
)
|
|
|
|
install(TARGETS plasma_appletscript_simple_javascript DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
install(FILES plasma-scriptengine-applet-simple-javascript.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
# RUNNER
|
|
|
|
set(javascript_runner_engine_SRCS
|
|
javascriptrunner.cpp
|
|
)
|
|
|
|
kde4_add_plugin(plasma_runnerscript_javascript ${javascript_runner_engine_SRCS})
|
|
|
|
target_link_libraries(plasma_runnerscript_javascript
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_PLASMA_LIBS}
|
|
${QT_QTSCRIPT_LIBRARY}
|
|
${QT_QTUITOOLS_LIBRARY}
|
|
${QT_QTXML_LIBRARY}
|
|
)
|
|
|
|
install(TARGETS plasma_runnerscript_javascript DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
install(FILES plasma-scriptengine-runner-javascript.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
|
|
# DATAENGINE
|
|
|
|
set(javascript_dataengine_engine_SRCS
|
|
javascriptdataengine.cpp
|
|
)
|
|
kde4_add_plugin(plasma_dataenginescript_javascript ${javascript_dataengine_engine_SRCS})
|
|
|
|
target_link_libraries(plasma_dataenginescript_javascript
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_PLASMA_LIBS}
|
|
${QT_QTSCRIPT_LIBRARY})
|
|
|
|
install(TARGETS plasma_dataenginescript_javascript DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
install(FILES plasma-scriptengine-dataengine-javascript.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|