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) --- kaboodle/CMakeLists.txt | 87 +++++++++++++++++++++++++++++++++++++++++ kaboodle/actions/CMakeLists.txt | 12 ++++++ kaboodle/pics/CMakeLists.txt | 12 ++++++ 3 files changed, 111 insertions(+) create mode 100644 kaboodle/CMakeLists.txt create mode 100644 kaboodle/actions/CMakeLists.txt create mode 100644 kaboodle/pics/CMakeLists.txt (limited to 'kaboodle') diff --git a/kaboodle/CMakeLists.txt b/kaboodle/CMakeLists.txt new file mode 100644 index 00000000..c7f8f811 --- /dev/null +++ b/kaboodle/CMakeLists.txt @@ -0,0 +1,87 @@ +################################################# +# +# (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( actions ) +add_subdirectory( pics ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${ARTS_INCLUDE_DIRS} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${ARTS_LIBRARY_DIRS} +) + + +##### kaboodle (library) ######################## + +tde_add_library( kaboodle STATIC_PIC AUTOMOC + SOURCES + conf.cpp + controls.cpp + engine.cpp + player.cpp + view.cpp + kaboodle_factory.cpp +) + + +##### libkaboodle (module) ###################### + +tde_add_kpart( libkaboodlepart AUTOMOC + SOURCES + ${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp + EMBED + kaboodle-static + LINK + tdeparts-shared + DCOP tdecore-shared tdeui-shared tdefx-shared tdeio-shared tdetexteditor-shared + mcop qtmcop kmedia2_idl soundserver_idl artsflow_idl artskde-shared tdemediaplayer-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + +file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/dummy.cpp "" ) + + +##### kaboodle (executable) ##################### + +tde_add_executable( kaboodle AUTOMOC + SOURCES + main.cpp + kaboodleapp.cpp + userinterface.cpp + LINK + kaboodle-static tdeparts-shared + DCOP tdecore-shared tdeui-shared tdefx-shared tdeio-shared tdetexteditor-shared + mcop qtmcop kmedia2_idl soundserver_idl artsflow_idl artskde-shared tdemediaplayer-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( + FILES kaboodle.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) +install( + FILES kaboodleui.rc kaboodlepartui.rc + DESTINATION ${DATA_INSTALL_DIR}/kaboodle +) +install( + FILES kaboodle_component.desktop kaboodleengine.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) diff --git a/kaboodle/actions/CMakeLists.txt b/kaboodle/actions/CMakeLists.txt new file mode 100644 index 00000000..fadc20f7 --- /dev/null +++ b/kaboodle/actions/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kaboodle/icons ) diff --git a/kaboodle/pics/CMakeLists.txt b/kaboodle/pics/CMakeLists.txt new file mode 100644 index 00000000..76b06133 --- /dev/null +++ b/kaboodle/pics/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_install_icons( ) -- cgit v1.2.1