aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Effect')
-rw-r--r--src/plugins/Effect/bs2b/CMakeLists.txt7
-rw-r--r--src/plugins/Effect/crossfade/CMakeLists.txt8
-rw-r--r--src/plugins/Effect/ladspa/CMakeLists.txt7
-rw-r--r--src/plugins/Effect/srconverter/CMakeLists.txt8
-rw-r--r--src/plugins/Effect/stereo/CMakeLists.txt7
5 files changed, 27 insertions, 10 deletions
diff --git a/src/plugins/Effect/bs2b/CMakeLists.txt b/src/plugins/Effect/bs2b/CMakeLists.txt
index 3c9daf6c0..18cf7bc3d 100644
--- a/src/plugins/Effect/bs2b/CMakeLists.txt
+++ b/src/plugins/Effect/bs2b/CMakeLists.txt
@@ -31,8 +31,11 @@ SET(libbs2b_SRCS
effectbs2bfactory.cpp
)
-SET(libbs2b_MOC_HDRS
+SET(libbs2b_HDRS
bs2bplugin.h
+)
+
+SET(libbs2b_MOC_HDRS
settingsdialog.h
effectbs2bfactory.h
)
@@ -61,7 +64,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
IF(BS2B_FOUND)
ADD_LIBRARY(bs2b MODULE ${libbs2b_SRCS} ${libbs2b_MOC_SRCS} ${libbs2b_UIS_H}
- ${libbs2b_RCC_SRCS})
+ ${libbs2b_RCC_SRCS} ${libbs2b_HDRS})
add_dependencies(bs2b qmmp)
target_link_libraries(bs2b ${QT_LIBRARIES} -lqmmp ${BS2B_LDFLAGS} ${BS2B_CFLAGS})
install(TARGETS bs2b DESTINATION ${LIB_DIR}/qmmp/Effect)
diff --git a/src/plugins/Effect/crossfade/CMakeLists.txt b/src/plugins/Effect/crossfade/CMakeLists.txt
index ab63220df..7775e3f11 100644
--- a/src/plugins/Effect/crossfade/CMakeLists.txt
+++ b/src/plugins/Effect/crossfade/CMakeLists.txt
@@ -31,8 +31,11 @@ SET(libcrossfade_SRCS
effectcrossfadefactory.cpp
)
-SET(libcrossfade_MOC_HDRS
+SET(libcrossfade_HDRS
crossfadeplugin.h
+)
+
+SET(libcrossfade_MOC_HDRS
settingsdialog.h
effectcrossfadefactory.h
)
@@ -55,7 +58,8 @@ QT4_WRAP_UI(libcrossfade_UIS_H ${libcrossfade_UIS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
-ADD_LIBRARY(crossfade MODULE ${libcrossfade_SRCS} ${libcrossfade_MOC_SRCS} ${libcrossfade_UIS_H} ${libcrossfade_RCC_SRCS})
+ADD_LIBRARY(crossfade MODULE ${libcrossfade_SRCS} ${libcrossfade_MOC_SRCS} ${libcrossfade_UIS_H} ${libcrossfade_RCC_SRCS}
+${libcrossfade_HDRS})
add_dependencies(crossfade qmmp)
target_link_libraries(crossfade ${QT_LIBRARIES} -lqmmp)
install(TARGETS crossfade DESTINATION ${LIB_DIR}/qmmp/Effect)
diff --git a/src/plugins/Effect/ladspa/CMakeLists.txt b/src/plugins/Effect/ladspa/CMakeLists.txt
index e46729558..f06a97ead 100644
--- a/src/plugins/Effect/ladspa/CMakeLists.txt
+++ b/src/plugins/Effect/ladspa/CMakeLists.txt
@@ -34,9 +34,12 @@ SET(libladspa_SRCS
effectladspafactory.cpp
)
+SET(libladspa_HDRS
+ ladspahelper.h
+)
+
SET(libladspa_MOC_HDRS
ladspahost.h
- ladspahelper.h
ladspaslider.h
ladspabutton.h
settingsdialog.h
@@ -61,7 +64,7 @@ QT4_WRAP_UI(libladspa_UIS_H ${libladspa_UIS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
ADD_LIBRARY(ladspa MODULE ${libladspa_SRCS} ${libladspa_MOC_SRCS} ${libladspa_UIS_H}
- ${libladspa_RCC_SRCS})
+ ${libladspa_RCC_SRCS} ${libladspa_HDRS})
add_dependencies(ladspa qmmp)
target_link_libraries(ladspa ${QT_LIBRARIES} -lqmmp -ldl)
install(TARGETS ladspa DESTINATION ${LIB_DIR}/qmmp/Effect)
diff --git a/src/plugins/Effect/srconverter/CMakeLists.txt b/src/plugins/Effect/srconverter/CMakeLists.txt
index d135d8791..651c87dbc 100644
--- a/src/plugins/Effect/srconverter/CMakeLists.txt
+++ b/src/plugins/Effect/srconverter/CMakeLists.txt
@@ -36,8 +36,12 @@ SET(libsrconverter_SRCS
effectsrconverterfactory.cpp
)
-SET(libsrconverter_MOC_HDRS
+SET(libsrconverter_HDRS
srconverter.h
+)
+
+SET(libsrconverter_MOC_HDRS
+
settingsdialog.h
effectsrconverterfactory.h
)
@@ -62,7 +66,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
IF(SAMPLERATE_FOUND)
ADD_LIBRARY(srconverter MODULE ${libsrconverter_SRCS} ${libsrconverter_MOC_SRCS} ${libsrconverter_UIS_H}
- ${libsrconverter_RCC_SRCS})
+ ${libsrconverter_RCC_SRCS} ${libsrconverter_HDRS})
add_dependencies(srconverter qmmp)
target_link_libraries(srconverter ${QT_LIBRARIES} -lqmmp ${SAMPLERATE_LDFLAGS} ${SAMPLERATE_CFLAGS})
install(TARGETS srconverter DESTINATION ${LIB_DIR}/qmmp/Effect)
diff --git a/src/plugins/Effect/stereo/CMakeLists.txt b/src/plugins/Effect/stereo/CMakeLists.txt
index 76c223b66..7717d5302 100644
--- a/src/plugins/Effect/stereo/CMakeLists.txt
+++ b/src/plugins/Effect/stereo/CMakeLists.txt
@@ -31,8 +31,11 @@ SET(libstereo_SRCS
effectstereofactory.cpp
)
-SET(libstereo_MOC_HDRS
+SET(libstereo_HDRS
stereoplugin.h
+)
+
+SET(libstereo_MOC_HDRS
settingsdialog.h
effectstereofactory.h
)
@@ -55,7 +58,7 @@ QT4_WRAP_UI(libstereo_UIS_H ${libstereo_UIS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
-ADD_LIBRARY(stereo MODULE ${libstereo_SRCS} ${libstereo_MOC_SRCS} ${libstereo_UIS_H} ${libstereo_RCC_SRCS})
+ADD_LIBRARY(stereo MODULE ${libstereo_SRCS} ${libstereo_MOC_SRCS} ${libstereo_UIS_H} ${libstereo_RCC_SRCS} ${libstereo_HDRS})
add_dependencies(stereo qmmp)
target_link_libraries(stereo ${QT_LIBRARIES} -lqmmp)
install(TARGETS stereo DESTINATION ${LIB_DIR}/qmmp/Effect)