blob: 58c847d96a69554634508a0166ba904d4905af08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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
)
|