aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mad/CMakeLists.txt
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/Input/mad/CMakeLists.txt
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/Input/mad/CMakeLists.txt')
-rw-r--r--src/plugins/Input/mad/CMakeLists.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/plugins/Input/mad/CMakeLists.txt b/src/plugins/Input/mad/CMakeLists.txt
index e4e0d8130..b5d04d932 100644
--- a/src/plugins/Input/mad/CMakeLists.txt
+++ b/src/plugins/Input/mad/CMakeLists.txt
@@ -41,13 +41,16 @@ SET(libmad_SRCS
replaygainreader.cpp
)
+SET(libmad_HDRS
+ decoder_mad.h
+ tagextractor.h
+ replaygainreader.h
+)
+
SET(libmad_MOC_HDRS
settingsdialog.h
decodermadfactory.h
- decoder_mad.h
- tagextractor.h
mpegmetadatamodel.h
- replaygainreader.h
)
SET(libmad_RCCS translations/translations.qrc)
@@ -69,7 +72,7 @@ QT4_WRAP_UI(libmad_UIS_H ${libmad_UIS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
IF(MAD_FOUND)
-ADD_LIBRARY(mad MODULE ${libmad_SRCS} ${libmad_MOC_SRCS} ${libmad_UIS_H} ${libmad_RCC_SRCS})
+ADD_LIBRARY(mad MODULE ${libmad_SRCS} ${libmad_MOC_SRCS} ${libmad_UIS_H} ${libmad_RCC_SRCS} ${libmad_HDRS})
add_dependencies(mad qmmp)
target_link_libraries(mad ${QT_LIBRARIES} -lqmmp ${MAD_LDFLAGS} ${MAD_CFLAGS} ${TAGLIB_LDFLAGS} ${TAGLIB_CFLAGS})
install(TARGETS mad DESTINATION ${LIB_DIR}/qmmp/Input)