Skip to content
This repository has been archived by the owner on Aug 28, 2020. It is now read-only.

Commit

Permalink
Add dbus interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePBone committed Jan 8, 2020
1 parent 589e150 commit 03c9d96
Show file tree
Hide file tree
Showing 6 changed files with 1,050 additions and 159 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(gst-plugin-viperfx)

include_directories(.)
include_directories(src)
find_package(PkgConfig)
find_package(PkgConfig REQUIRED)

pkg_check_modules(GST REQUIRED gstreamer-1.0>=1.0
gstreamer-base-1.0>=1.0
Expand All @@ -17,6 +17,8 @@ file(GLOB SOURCES

add_library(gst-plugin-viperfx SHARED ${SOURCES})

find_package(PkgConfig REQUIRED)
pkg_check_modules(deps REQUIRED IMPORTED_TARGET glib-2.0 gio-unix-2.0)
target_include_directories(gst-plugin-viperfx PUBLIC ${GST_INCLUDE_DIRS})
target_compile_options(gst-plugin-viperfx PUBLIC ${GST_CFLAGS})
target_link_libraries(gst-plugin-viperfx ${GST_LIBRARIES} pthread)
target_link_libraries(gst-plugin-viperfx ${GST_LIBRARIES} pthread PkgConfig::deps)
Loading

0 comments on commit 03c9d96

Please sign in to comment.