From efcdd889254fc98314dd48854d50e90aa21e53c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 26 Mar 2017 15:58:46 +0200 Subject: Initial cmake conversion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 8b12682035e2ae92a29a9ce12abc5fbcf38b1192) --- arts/gui/kde/CMakeLists.txt | 74 +++++++++++++++++++++++++++++++++++ arts/gui/kde/Makefile.am | 2 +- arts/gui/kde/artstestgui.cpp | 4 +- arts/gui/kde/mcopclass/CMakeLists.txt | 19 +++++++++ 4 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 arts/gui/kde/CMakeLists.txt create mode 100644 arts/gui/kde/mcopclass/CMakeLists.txt (limited to 'arts/gui/kde') diff --git a/arts/gui/kde/CMakeLists.txt b/arts/gui/kde/CMakeLists.txt new file mode 100644 index 00000000..fec23fc2 --- /dev/null +++ b/arts/gui/kde/CMakeLists.txt @@ -0,0 +1,74 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( mcopclass ) + +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/arts/runtime + ${CMAKE_BINARY_DIR}/arts/gui/common + ${CMAKE_BINARY_DIR} + ${ARTS_INCLUDE_DIRS} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${ARTS_LIBRARY_DIRS} +) + + +##### artsgui_kde (library) ##################### + +tde_add_library( artsgui_kde SHARED AUTOMOC + SOURCES + kwidget_impl.cpp kbutton_impl.cpp + kpoti_impl.cpp kpoti.cpp kwidgetrepo.cpp kartswidget.cpp + klineedit_impl.cpp khbox_impl.cpp kvbox_impl.cpp kspinbox_impl.cpp + kcombobox_impl.cpp kfader.cpp kfader_impl.cpp kgraph_impl.cpp kgraph.cpp + kgraphline_impl.cpp kframe_impl.cpp klayoutbox_impl.cpp tdepopupbox_impl.cpp + klevelmeter_impl.cpp klevelmeter_small.cpp klevelmeter_linebars.cpp + klevelmeter_normalbars.cpp klevelmeter_firebars.cpp + ktickmarks_impl.cpp kvolumefader_impl.cpp klabel_impl.cpp + VERSION 0.0.0 + LINK + tdecore-shared tdeio-shared tdeui-shared tdefx-shared artsgui_idl-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### artsgui (check program) ################### + +tde_add_check_executable( artstestgui + SOURCES + artstestgui.cpp + LINK + tdecore-shared tdeio-shared tdeui-shared tdefx-shared + qtmcop artsflow artsgui_idl-shared +) + +tde_add_check_executable( dbtest AUTOMOC + SOURCES + dbtest.cpp + LINK + tdecore-shared tdeio-shared tdeui-shared artsgui_kde-shared +) + + +##### other data ################################ + +install( + FILES + kartswidget.h kframe_impl.h kwidget_impl.h kwidgetrepo.h klayoutbox_impl.h + DESTINATION ${INCLUDE_INSTALL_DIR}/arts +) diff --git a/arts/gui/kde/Makefile.am b/arts/gui/kde/Makefile.am index 33b8f582..440af44f 100644 --- a/arts/gui/kde/Makefile.am +++ b/arts/gui/kde/Makefile.am @@ -21,7 +21,7 @@ libartsgui_kde_la_LDFLAGS = $(all_libraries) -no-undefined libartsgui_kde_la_COMPILE_FIRST = ../common/artsgui.h artstestgui_SOURCES = artstestgui.cpp -artstestgui_LDADD = -lqtmcop -ltdecore -lartsflow \ +artstestgui_LDADD = -lmcop -lqtmcop -ltdecore -lartsflow \ $(top_builddir)/arts/gui/common/libartsgui_idl.la artstestgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor diff --git a/arts/gui/kde/artstestgui.cpp b/arts/gui/kde/artstestgui.cpp index 5c3613d7..5f558a26 100644 --- a/arts/gui/kde/artstestgui.cpp +++ b/arts/gui/kde/artstestgui.cpp @@ -31,9 +31,9 @@ using namespace Arts; int main(int argc, char **argv) { - TQIOManager iomanager; + QIOManager iomanager; Dispatcher dispatcher(&iomanager); - TDEApplication application(argc, argv, "testgui"); + TDEApplication application(argc, argv, "testgui", true); ObjectManager::the()->provideCapability("kdegui"); diff --git a/arts/gui/kde/mcopclass/CMakeLists.txt b/arts/gui/kde/mcopclass/CMakeLists.txt new file mode 100644 index 00000000..56985bb5 --- /dev/null +++ b/arts/gui/kde/mcopclass/CMakeLists.txt @@ -0,0 +1,19 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( + FILES + Widget.mcopclass Button.mcopclass Poti.mcopclass + LineEdit.mcopclass HBox.mcopclass VBox.mcopclass SpinBox.mcopclass + Fader.mcopclass GraphLine.mcopclass LayoutBox.mcopclass + PopupBox.mcopclass LevelMeter.mcopclass Label.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop/Arts +) -- cgit v1.2.1