diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:43:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:43:50 +0000 |
commit | ceea23677c61f20759ae986bd77b0d5c4d673edb (patch) | |
tree | 3fcec1702eaf9c14d1dd736e594f5df08dab4001 /src/CMakeLists.txt | |
download | kbfx-ceea23677c61f20759ae986bd77b0d5c4d673edb.tar.gz kbfx-ceea23677c61f20759ae986bd77b0d5c4d673edb.zip |
Added old KDE3 version of kbfx
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1091549 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..3e76368 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,62 @@ +SET(libkbfxspinxsrc + kbfxbutton.cpp + kbfxplasmacanvasabstractitem.cpp + kbfxplasmacanvasgroup.cpp + kbfxplasmacanvasgroupview.cpp + kbfxplasmacanvasitem.cpp + kbfxplasmacanvasitem_events.cpp + kbfxplasmacanvasitemwrapper.cpp + kbfxplasmacanvasstack.cpp + kbfxplasmacanvasview.cpp + kbfxplasmaindexitem.cpp + kbfxplasmaindexview.cpp + kbfxspinx.cpp + kbfxspinxmenu.cpp + kbfxspinxpopup.cpp + kbfxspinxscrollbar.cpp + kbfxspinxtoolbar.cpp + kbfxspinxtoolbutton.cpp + kbfxspinxtop.cpp + kbfxspinxview.cpp + kbfxtooltip.cpp + ) + +IF (NOT USE_KDE4) + KDE3_ADD_DCOP_SKELS(libkbfxspinxsrc kbfxspinx.h) + KDE3_AUTOMOC(${libkbfxspinxsrc}) + + ADD_LIBRARY(kbfxspinx MODULE ${libkbfxspinxsrc}) + SET_TARGET_PROPERTIES(kbfxspinx + PROPERTIES + COMPILE_FLAGS ${CMAKE_SHARED_LIBRARY_CXX_FLAGS}) + # SET_TARGET_PROPERTIES(kbfxspinx PROPERTIES + # SOVERSION ${LIB_MAJOR} + # VERSION ${APPLICATION_VERSION}) + TARGET_LINK_LIBRARIES(kbfxspinx + kbfxdata + kbfxcommon + ${QT_AND_KDECORE_LIBS} + ${KDE3_UI_LIBRARY} + ) + + KDE3_INSTALL_LIBTOOL_FILE(kbfxspinx ${PLUGIN_INSTALL_DIR}) +ELSE (NOT USE_KDE4) + # TODO: Have to rewrite it for DBUS. + # Rewrite the DCOP interface (in src/) to DBUS for KDE4 support. + # Should be done in a way to preserve KDE3 compatibility! + KDE4_ADD_DCOP_SKELS(libkbfxspinxsrc kbfxspinx.h) + KDE4_AUTOMOC(${libkbfxspinxsrc}) + + KDE4_ADD_LIBRARY(kbfxspinx MODULE ${libkbfxspinxsrc}) + TARGET_LINK_LIBRARIES(kbfxspinx + kbfxdata + kbfxcommon + ${KDE4_KDECORE_LIBS} + ${KDE4_KDEUI_LIBS} + ) + + KDE4_INSTALL_LIBTOOL_FILE(kbfxspinx ${PLUGIN_INSTALL_DIR}) +ENDIF (NOT USE_KDE4) + +INSTALL(TARGETS kbfxspinx DESTINATION ${PLUGIN_INSTALL_DIR}) +INSTALL(FILES kbfxspinx.desktop DESTINATION ${DATA_INSTALL_DIR}/kicker/applets) |