summaryrefslogtreecommitdiffstats
path: root/mpeglib
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2017-10-13 17:27:24 +0200
committerSlávek Banko <slavek.banko@axis.cz>2017-10-13 17:27:35 +0200
commit046c46598994f71b721dd2185a1e71945fe8adab (patch)
tree88021b6a81e48d37fce64a4b02a101c3e465f618 /mpeglib
parentefcdd889254fc98314dd48854d50e90aa21e53c0 (diff)
downloadtdemultimedia-046c46598994f71b721dd2185a1e71945fe8adab.tar.gz
tdemultimedia-046c46598994f71b721dd2185a1e71945fe8adab.zip
cmake: Fix detection on cdda include files
Signed-off-by: François Andriot <francois.andriot@free.fr> (cherry picked from commit f0f2d8725be5a35c448e2a85707086818f7a93e6)
Diffstat (limited to 'mpeglib')
-rw-r--r--mpeglib/example/cddaplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/mpgplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/splay/CMakeLists.txt1
-rw-r--r--mpeglib/example/tplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafcdda/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafmpgplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafsplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yaftplay/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafvorbis/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafxplayer/CMakeLists.txt1
-rw-r--r--mpeglib/example/yaf/yafyuv/CMakeLists.txt1
-rw-r--r--mpeglib/lib/decoder/CMakeLists.txt1
-rw-r--r--mpeglib/lib/input/CMakeLists.txt1
-rw-r--r--mpeglib/lib/mpegplay/CMakeLists.txt1
-rw-r--r--mpeglib/lib/mpgplayer/CMakeLists.txt1
-rw-r--r--mpeglib/lib/yuv/CMakeLists.txt1
16 files changed, 16 insertions, 0 deletions
diff --git a/mpeglib/example/cddaplay/CMakeLists.txt b/mpeglib/example/cddaplay/CMakeLists.txt
index 1ffecb0e..afa24158 100644
--- a/mpeglib/example/cddaplay/CMakeLists.txt
+++ b/mpeglib/example/cddaplay/CMakeLists.txt
@@ -15,6 +15,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/mpgplay/CMakeLists.txt b/mpeglib/example/mpgplay/CMakeLists.txt
index 7ef2188c..9beea85a 100644
--- a/mpeglib/example/mpgplay/CMakeLists.txt
+++ b/mpeglib/example/mpgplay/CMakeLists.txt
@@ -15,6 +15,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/splay/CMakeLists.txt b/mpeglib/example/splay/CMakeLists.txt
index d7292f79..fd5ab9d7 100644
--- a/mpeglib/example/splay/CMakeLists.txt
+++ b/mpeglib/example/splay/CMakeLists.txt
@@ -15,6 +15,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/tplay/CMakeLists.txt b/mpeglib/example/tplay/CMakeLists.txt
index 06f25e99..eba94759 100644
--- a/mpeglib/example/tplay/CMakeLists.txt
+++ b/mpeglib/example/tplay/CMakeLists.txt
@@ -15,6 +15,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafcdda/CMakeLists.txt b/mpeglib/example/yaf/yafcdda/CMakeLists.txt
index 5579f599..8d901129 100644
--- a/mpeglib/example/yaf/yafcdda/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafcdda/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafmpgplay/CMakeLists.txt b/mpeglib/example/yaf/yafmpgplay/CMakeLists.txt
index 5692823d..072f1241 100644
--- a/mpeglib/example/yaf/yafmpgplay/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafmpgplay/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafsplay/CMakeLists.txt b/mpeglib/example/yaf/yafsplay/CMakeLists.txt
index 78509009..726513fa 100644
--- a/mpeglib/example/yaf/yafsplay/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafsplay/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yaftplay/CMakeLists.txt b/mpeglib/example/yaf/yaftplay/CMakeLists.txt
index eeb05ea8..bd602306 100644
--- a/mpeglib/example/yaf/yaftplay/CMakeLists.txt
+++ b/mpeglib/example/yaf/yaftplay/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafvorbis/CMakeLists.txt b/mpeglib/example/yaf/yafvorbis/CMakeLists.txt
index bc223991..6bf7bed5 100644
--- a/mpeglib/example/yaf/yafvorbis/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafvorbis/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafxplayer/CMakeLists.txt b/mpeglib/example/yaf/yafxplayer/CMakeLists.txt
index 95f2c5b3..6763265b 100644
--- a/mpeglib/example/yaf/yafxplayer/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafxplayer/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/example/yaf/yafyuv/CMakeLists.txt b/mpeglib/example/yaf/yafyuv/CMakeLists.txt
index 37c6b622..7bfb1626 100644
--- a/mpeglib/example/yaf/yafyuv/CMakeLists.txt
+++ b/mpeglib/example/yaf/yafyuv/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/lib/decoder/CMakeLists.txt b/mpeglib/lib/decoder/CMakeLists.txt
index eb1371a9..a77ff51d 100644
--- a/mpeglib/lib/decoder/CMakeLists.txt
+++ b/mpeglib/lib/decoder/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/lib/input/CMakeLists.txt b/mpeglib/lib/input/CMakeLists.txt
index 37e1f539..8e17e901 100644
--- a/mpeglib/lib/input/CMakeLists.txt
+++ b/mpeglib/lib/input/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/lib/mpegplay/CMakeLists.txt b/mpeglib/lib/mpegplay/CMakeLists.txt
index 2ae612bb..90049818 100644
--- a/mpeglib/lib/mpegplay/CMakeLists.txt
+++ b/mpeglib/lib/mpegplay/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/lib/mpgplayer/CMakeLists.txt b/mpeglib/lib/mpgplayer/CMakeLists.txt
index 4f5db11b..0083518a 100644
--- a/mpeglib/lib/mpgplayer/CMakeLists.txt
+++ b/mpeglib/lib/mpgplayer/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(
diff --git a/mpeglib/lib/yuv/CMakeLists.txt b/mpeglib/lib/yuv/CMakeLists.txt
index ba551fc1..f8241353 100644
--- a/mpeglib/lib/yuv/CMakeLists.txt
+++ b/mpeglib/lib/yuv/CMakeLists.txt
@@ -13,6 +13,7 @@ include_directories(
${CMAKE_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
+ ${CDPARANOIA_INCLUDE_DIR}
)
link_directories(