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 --- noatun/library/noatunarts/CMakeLists.txt | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 noatun/library/noatunarts/CMakeLists.txt (limited to 'noatun/library/noatunarts/CMakeLists.txt') diff --git a/noatun/library/noatunarts/CMakeLists.txt b/noatun/library/noatunarts/CMakeLists.txt new file mode 100644 index 00000000..fa0aa905 --- /dev/null +++ b/noatun/library/noatunarts/CMakeLists.txt @@ -0,0 +1,76 @@ +################################################# +# +# (C) 2017 Slávek Banko +# slavek (DOT) banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +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} +) + + +##### noatunarts (library) ###################### + +tde_add_library( noatunarts SHARED AUTOMOC + SOURCES + noatunarts.cc fft.c Equalizer_impl.cpp + FFTScopes.cpp StereoEffectStack_impl.cpp + StereoVolumeControl_impl.cpp Session_impl.cpp + LINK + mpeg-shared ${ARTS_LIBRARIES} + mcop kmedia2_idl artsflow artsflow_idl soundserver_idl + DESTINATION ${LIB_INSTALL_DIR} +) + +add_custom_command( + OUTPUT + noatunarts.cc noatunarts.h + COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t + -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/noatunarts.idl + DEPENDS noatunarts.idl +) + + +##### other data ################################ + +install( + FILES ${CMAKE_CURRENT_BINARY_DIR}/noatunarts.h + DESTINATION ${INCLUDE_INSTALL_DIR}/noatun +) + +install( + FILES + Equalizer.mcopclass + FFTScopeStereo.mcopclass + StereoEffectStack.mcopclass + EqualizerSSE.mcopclass + RawScope.mcopclass + StereoVolumeControl.mcopclass + FFTScope.mcopclass + RawScopeStereo.mcopclass + StereoVolumeControlSSE.mcopclass + Session.mcopclass + Listener.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop/Noatun +) + +install( + FILES + ${CMAKE_CURRENT_BINARY_DIR}/noatunarts.mcoptype + ${CMAKE_CURRENT_BINARY_DIR}/noatunarts.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop +) -- cgit v1.2.1