From f2de90d7244364d110214dd0cb9f206d4bb68ad5 Mon Sep 17 00:00:00 2001 From: Brian Brooks Date: Tue, 28 Aug 2018 14:14:03 -0500 Subject: [PATCH] cmake: fix marvell plugin build Change-Id: I4ff1a6ed4e42381ed68a62362ba05e940b615da2 Signed-off-by: Brian Brooks --- src/plugins/marvell/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/plugins/marvell/CMakeLists.txt b/src/plugins/marvell/CMakeLists.txt index 39b7b85c123..c606f3d5b81 100644 --- a/src/plugins/marvell/CMakeLists.txt +++ b/src/plugins/marvell/CMakeLists.txt @@ -11,18 +11,21 @@ # See the License for the specific language governing permissions and # limitations under the License. -find_path(MUSDK_INCLUDE_DIR NAMES marvell/pp2/pp2.h) +find_path(MUSDK_INCLUDE_DIR NAMES mv_std.h) find_library(MUSDK_LIB NAMES musdk) if(MUSDK_INCLUDE_DIR AND MUSDK_LIB) add_vpp_plugin(marvell - marvell.api + SOURCES plugin.c pp2/cli.c pp2/format.c pp2/input.c pp2/output.c pp2/pp2.c + + LINK_LIBRARIES + ${MUSDK_LIB} ) include_directories(${MUSDK_INCLUDE_DIR}) message(STATUS "Found Marvel MUSDK in ${MUSDK_INCLUDE_DIR}") -- 2.16.6