aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/marvell
diff options
context:
space:
mode:
authorBrian Brooks <brian.brooks@arm.com>2018-08-28 14:14:03 -0500
committerBrian Brooks <brian.brooks@arm.com>2018-08-28 14:14:56 -0500
commitf2de90d7244364d110214dd0cb9f206d4bb68ad5 (patch)
tree95b54f0d41a3a6059deab0942e938679ff852926 /src/plugins/marvell
parent1732e476cde7cd74aa107c91eb93754a274612d3 (diff)
cmake: fix marvell plugin build
Change-Id: I4ff1a6ed4e42381ed68a62362ba05e940b615da2 Signed-off-by: Brian Brooks <brian.brooks@arm.com>
Diffstat (limited to 'src/plugins/marvell')
-rw-r--r--src/plugins/marvell/CMakeLists.txt7
1 files 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}")