aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/ffmpeg/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/ffmpeg/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/ffmpeg/CMakeLists.txt')
-rw-r--r--src/plugins/Input/ffmpeg/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/Input/ffmpeg/CMakeLists.txt b/src/plugins/Input/ffmpeg/CMakeLists.txt
index 86a41c4a4..dfad4a427 100644
--- a/src/plugins/Input/ffmpeg/CMakeLists.txt
+++ b/src/plugins/Input/ffmpeg/CMakeLists.txt
@@ -43,9 +43,12 @@ SET(libffmpeg_SRCS
settingsdialog.cpp
)
+SET(libffmpeg_HDRS
+ decoder_ffmpeg.h
+)
+
SET(libffmpeg_MOC_HDRS
decoderffmpegfactory.h
- decoder_ffmpeg.h
ffmpegmetadatamodel.h
settingsdialog.h
)
@@ -70,7 +73,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
IF(FFMPEG_FOUND)
ADD_LIBRARY(ffmpeg MODULE ${libffmpeg_SRCS} ${libffmpeg_MOC_SRCS} ${libffmpeg_UIS_H}
- ${libffmpeg_RCC_SRCS})
+ ${libffmpeg_RCC_SRCS} ${libffmpeg_HDRS})
add_dependencies(ffmpeg qmmp)
target_link_libraries(ffmpeg ${QT_LIBRARIES} -lqmmp ${FFMPEG_LDFLAGS} ${FFMPEG_CFLAGS})
install(TARGETS ffmpeg DESTINATION ${LIB_DIR}/qmmp/Input)