diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-03-26 15:58:46 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-03-26 15:59:04 +0200 |
commit | efcdd889254fc98314dd48854d50e90aa21e53c0 (patch) | |
tree | 5dc7034c23a5a18ca31d90225137f5eeaec809c4 /arts/gui/kde/CMakeLists.txt | |
parent | 25709e498d5832125f5f584bd10e3c66d05ec5ee (diff) | |
download | tdemultimedia-efcdd889254fc98314dd48854d50e90aa21e53c0.tar.gz tdemultimedia-efcdd889254fc98314dd48854d50e90aa21e53c0.zip |
Initial cmake conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 8b12682035e2ae92a29a9ce12abc5fbcf38b1192)
Diffstat (limited to 'arts/gui/kde/CMakeLists.txt')
-rw-r--r-- | arts/gui/kde/CMakeLists.txt | 74 |
1 files changed, 74 insertions, 0 deletions
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 +) |