This repository has been archived by the owner on Aug 28, 2020. It is now read-only.
forked from vipersaudio/gst-plugin-viperfx
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ThePBone/dbus
Add DBus interface to gst-plugin-viperfx
- Loading branch information
Showing
12 changed files
with
1,513 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.