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

Commit

Permalink
Merge pull request #1 from ThePBone/dbus
Browse files Browse the repository at this point in the history
Add DBus interface to gst-plugin-viperfx
  • Loading branch information
noahbliss authored Jan 21, 2020
2 parents e0a615e + ab957df commit 07233f9
Show file tree
Hide file tree
Showing 12 changed files with 1,513 additions and 285 deletions.
25 changes: 25 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
cmake_minimum_required(VERSION 3.10)
project(gst-plugin-viperfx)

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

pkg_check_modules(GST REQUIRED gstreamer-1.0>=1.0
gstreamer-base-1.0>=1.0
gstreamer-controller-1.0>=1.0
gstreamer-audio-1.0>=1.0)

file(GLOB SOURCES
src/*.h
src/*.c
)

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

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 PkgConfig::deps)

set_target_properties(gst-plugin-viperfx PROPERTIES OUTPUT_NAME "gstviperfx")
3 changes: 0 additions & 3 deletions Makefile.am

This file was deleted.

18 changes: 0 additions & 18 deletions autogen.sh

This file was deleted.

87 changes: 0 additions & 87 deletions configure.ac

This file was deleted.

Loading

0 comments on commit 07233f9

Please sign in to comment.