Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ set (TARGET_NAME "elements")

find_package(OpenCV REQUIRED core imgproc)
find_package(PkgConfig REQUIRED)
find_package(OpenVINO REQUIRED Runtime)
pkg_check_modules(GSTREAMER gstreamer-1.0>=1.16 REQUIRED)
pkg_check_modules(GSTVIDEO gstreamer-video-1.0>=1.16 REQUIRED)
pkg_check_modules(GSTALLOC gstreamer-allocators-1.0 REQUIRED)
Expand Down Expand Up @@ -82,6 +83,7 @@ PRIVATE
json-hpp
json-schema-validator
utils
openvino::runtime
)

if(${ENABLE_AUDIO_INFERENCE_ELEMENTS})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

cmake_minimum_required(VERSION 3.16)
include(GNUInstallDirs)
find_package(OpenVINO REQUIRED Runtime)
find_package(PkgConfig REQUIRED)

pkg_check_modules(GST REQUIRED IMPORTED_TARGET
Expand Down Expand Up @@ -114,6 +115,7 @@ target_include_directories(gstgvamotiondetect PRIVATE

target_link_libraries(gstgvamotiondetect PRIVATE
PkgConfig::GST
openvino::runtime
dlstreamer_gst
dlstreamer_gst_meta
)
Expand Down
Loading