cmake: fix marvell plugin build 39/14539/1
authorBrian Brooks <brian.brooks@arm.com>
Tue, 28 Aug 2018 19:14:03 +0000 (14:14 -0500)
committerBrian Brooks <brian.brooks@arm.com>
Tue, 28 Aug 2018 19:14:56 +0000 (14:14 -0500)
Change-Id: I4ff1a6ed4e42381ed68a62362ba05e940b615da2
Signed-off-by: Brian Brooks <brian.brooks@arm.com>
src/plugins/marvell/CMakeLists.txt

index 39b7b85..c606f3d 100644 (file)
 # 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}")