aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/stereo
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-08-30 16:51:06 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-08-30 16:51:06 +0000
commit53388fec83220c0a42e769484f321add84b35741 (patch)
tree33dab0389d0ccb1d27c57418213ba6c9fb3ba4e7 /src/plugins/Effect/stereo
parent40461745dd60d98391959ceca8178a24426cfb52 (diff)
downloadqmmp-53388fec83220c0a42e769484f321add84b35741.tar.gz
qmmp-53388fec83220c0a42e769484f321add84b35741.tar.bz2
qmmp-53388fec83220c0a42e769484f321add84b35741.zip
fixed moc warnings
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2323 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/stereo')
-rw-r--r--src/plugins/Effect/stereo/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
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)