From 8b12682035e2ae92a29a9ce12abc5fbcf38b1192 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 --- arts/modules/CMakeLists.txt | 84 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 arts/modules/CMakeLists.txt (limited to 'arts/modules/CMakeLists.txt') diff --git a/arts/modules/CMakeLists.txt b/arts/modules/CMakeLists.txt new file mode 100644 index 00000000..9f37038c --- /dev/null +++ b/arts/modules/CMakeLists.txt @@ -0,0 +1,84 @@ +################################################# +# +# (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( common ) +add_subdirectory( effects ) +add_subdirectory( mixers ) +add_subdirectory( synth ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/arts/gui/common + ${CMAKE_BINARY_DIR}/arts/midi + ${CMAKE_BINARY_DIR}/arts/modules/common + ${CMAKE_BINARY_DIR}/arts/modules/effects + ${CMAKE_BINARY_DIR}/arts/modules/mixers + ${CMAKE_BINARY_DIR}/arts/modules/synth + ${CMAKE_BINARY_DIR}/arts/runtime + ${CMAKE_BINARY_DIR} + ${ARTS_INCLUDE_DIRS} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${ARTS_LIBRARY_DIRS} +) + + +##### artsmodules (library) ##################### + +tde_add_library( artsmodules SHARED + SOURCES + artsmodules.cc + VERSION 0.0.0 + LINK + tdecore-shared ${DL_LIBRARIES} mcop artsflow + artsbuilder-shared artsgui_idl-shared artsmidi_idl-shared + artsmodulescommon-shared artsmodulessynth-shared + artsmoduleseffects-shared artsmodulesmixers-shared + DESTINATION ${LIB_INSTALL_DIR} +) + +add_custom_command( + OUTPUT + artsmodules.cc artsmodules.h + artsmodules.mcoptype artsmodules.mcopclass + COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t + -I${CMAKE_SOURCE_DIR}/arts/gui/common + -I${CMAKE_SOURCE_DIR}/arts/midi + -I${CMAKE_SOURCE_DIR}/arts/modules + -I${CMAKE_SOURCE_DIR}/arts/modules/common + -I${CMAKE_SOURCE_DIR}/arts/modules/effects + -I${CMAKE_SOURCE_DIR}/arts/modules/mixers + -I${CMAKE_SOURCE_DIR}/arts/modules/synth + -I${ARTS_INCLUDEDIR} + ${CMAKE_CURRENT_SOURCE_DIR}/artsmodules.idl + DEPENDS artsmodules.idl +) + + +##### other data ################################ + +install( + FILES + artsmodules.idl + ${CMAKE_CURRENT_BINARY_DIR}/artsmodules.h + DESTINATION ${INCLUDE_INSTALL_DIR}/arts +) + +install( + FILES + ${CMAKE_CURRENT_BINARY_DIR}/artsmodules.mcoptype + ${CMAKE_CURRENT_BINARY_DIR}/artsmodules.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop +) -- cgit v1.2.1