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/effects/CMakeLists.txt | 90 +++++++++++++++++++++++++++ arts/modules/effects/freeverb/CMakeLists.txt | 34 ++++++++++ arts/modules/effects/mcopclass/CMakeLists.txt | 34 ++++++++++ 3 files changed, 158 insertions(+) create mode 100644 arts/modules/effects/CMakeLists.txt create mode 100644 arts/modules/effects/freeverb/CMakeLists.txt create mode 100644 arts/modules/effects/mcopclass/CMakeLists.txt (limited to 'arts/modules/effects') diff --git a/arts/modules/effects/CMakeLists.txt b/arts/modules/effects/CMakeLists.txt new file mode 100644 index 00000000..58c847d9 --- /dev/null +++ b/arts/modules/effects/CMakeLists.txt @@ -0,0 +1,90 @@ +################################################# +# +# (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( freeverb ) +add_subdirectory( mcopclass ) + +include_directories( + ${CMAKE_SOURCE_DIR}/arts/gui/kde + ${CMAKE_SOURCE_DIR}/arts/modules/synth + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/arts/gui/common + ${CMAKE_BINARY_DIR}/arts/midi + ${CMAKE_BINARY_DIR}/arts/modules + ${CMAKE_BINARY_DIR}/arts/modules/common + ${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} +) + + +##### artsmoduleseffects (library) ############## + +tde_add_library( artsmoduleseffects SHARED AUTOMOC + SOURCES + artsmoduleseffects.cc + fivebandmonocomplexeq_impl.cc + monostereoconversion_impl.cc + synth_stereo_pitch_shift_impl.cc synth_stereo_pitch_shift_fft_impl.cc + synth_voice_removal_impl.cc voiceremovalguifactory_impl.cc + synth_stereo_compressor_impl.cc stereocompressorguifactory_impl.cc + synth_stereo_fir_equalizer_impl.cc + synth_freeverb_impl.cc freeverbguifactory_impl.cc + effect_wavecapture_impl.cc + kstereovolumecontrolgui_impl.cpp stereovolumecontrolguifactory_impl.cpp + VERSION 0.0.0 + EMBED + freeverb-static + LINK + artsgui_idl-shared artsgui_kde-shared + artsmodulescommon-shared + mcop artsflow artsflow_idl ${ARTS_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} +) + +add_custom_command( + OUTPUT + artsmoduleseffects.cc artsmoduleseffects.h + artsmoduleseffects.mcopclass artsmoduleseffects.mcoptype + COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t + -I${CMAKE_SOURCE_DIR}/arts/gui/common + -I${CMAKE_SOURCE_DIR}/arts/midi + -I${CMAKE_SOURCE_DIR}/arts/modules/common + -I${CMAKE_SOURCE_DIR}/arts/modules/synth + -I${ARTS_INCLUDEDIR} + ${CMAKE_CURRENT_SOURCE_DIR}/artsmoduleseffects.idl + DEPENDS artsmoduleseffects.idl +) + + +##### other data ################################ + +install( + FILES + artsmoduleseffects.idl + ${CMAKE_CURRENT_BINARY_DIR}/artsmoduleseffects.h + DESTINATION ${INCLUDE_INSTALL_DIR}/arts +) + +install( + FILES + ${CMAKE_CURRENT_BINARY_DIR}/artsmoduleseffects.mcoptype + ${CMAKE_CURRENT_BINARY_DIR}/artsmoduleseffects.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop +) diff --git a/arts/modules/effects/freeverb/CMakeLists.txt b/arts/modules/effects/freeverb/CMakeLists.txt new file mode 100644 index 00000000..a634252d --- /dev/null +++ b/arts/modules/effects/freeverb/CMakeLists.txt @@ -0,0 +1,34 @@ +################################################# +# +# (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/gui/common + ${CMAKE_BINARY_DIR}/arts/midi + ${CMAKE_BINARY_DIR}/arts/modules + ${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} +) + + +##### freeverb (library) ######################## + +tde_add_library( freeverb STATIC_PIC + SOURCES allpass.cpp comb.cpp revmodel.cpp +) diff --git a/arts/modules/effects/mcopclass/CMakeLists.txt b/arts/modules/effects/mcopclass/CMakeLists.txt new file mode 100644 index 00000000..17a2162a --- /dev/null +++ b/arts/modules/effects/mcopclass/CMakeLists.txt @@ -0,0 +1,34 @@ +################################################# +# +# (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 + FiveBandMonoComplexEQ.mcopclass + FiveBandMonoComplexEQGuiFactory.mcopclass + MonoToStereo.mcopclass + StereoToMono.mcopclass + StereoBalance.mcopclass + StereoBalanceGuiFactory.mcopclass + Synth_VOICE_REMOVAL.mcopclass + VoiceRemovalGuiFactory.mcopclass + Synth_STEREO_COMPRESSOR.mcopclass + StereoCompressorGuiFactory.mcopclass + Synth_STEREO_PITCH_SHIFT.mcopclass + Synth_STEREO_PITCH_SHIFT_FFT.mcopclass + Synth_STEREO_FIR_EQUALIZER.mcopclass + StereoFirEqualizerGuiFactory.mcopclass + Synth_FREEVERB.mcopclass + FreeverbGuiFactory.mcopclass + Effect_WAVECAPTURE.mcopclass + StereoVolumeControlGui.mcopclass + StereoVolumeControlGuiFactory.mcopclass + DESTINATION ${LIB_INSTALL_DIR}/mcop/Arts +) -- cgit v1.2.3