Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
006688af
Commit
006688af
authored
Jan 15, 2019
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson: install .pc file for static gstreamer plugin
parent
5dd82134
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
gst/meson.build
gst/meson.build
+8
-1
No files found.
gst/meson.build
View file @
006688af
...
@@ -6,11 +6,18 @@ gst_nice_sources = [
...
@@ -6,11 +6,18 @@ gst_nice_sources = [
gst_nice_args = ['-DGST_USE_UNSTABLE_API']
gst_nice_args = ['-DGST_USE_UNSTABLE_API']
gst_plugins_install_dir = join_paths(get_option('libdir'), 'gstreamer-1.0')
libgstnice = library('gstnice',
libgstnice = library('gstnice',
gst_nice_sources,
gst_nice_sources,
c_args : gst_nice_args,
c_args : gst_nice_args,
include_directories: nice_incs,
include_directories: nice_incs,
dependencies: [nice_deps, gst_dep],
dependencies: [nice_deps, gst_dep],
link_with: libnice,
link_with: libnice,
install_dir:
join_paths(get_option('libdir'), 'gstreamer-1.0')
,
install_dir:
gst_plugins_install_dir
,
install: true)
install: true)
# Generate pc files for static plugins if we build static plugins
if get_option('default_library') != 'shared'
pkg.generate(libgstnice, install_dir: join_paths(gst_plugins_install_dir, 'pkgconfig'))
endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment