Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gstreamer
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
371
Issues
371
List
Boards
Labels
Milestones
Merge Requests
44
Merge Requests
44
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gstreamer
Commits
38ec9546
Commit
38ec9546
authored
Jul 25, 2018
by
Nirbheek Chauhan
🐜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson: Don't add static printf library to executables
They should only need to link to libgstreamer.
parent
054fa3aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
5 deletions
+0
-5
libs/gst/helpers/meson.build
libs/gst/helpers/meson.build
+0
-2
plugins/tracers/meson.build
plugins/tracers/meson.build
+0
-1
tests/benchmarks/meson.build
tests/benchmarks/meson.build
+0
-1
tools/meson.build
tools/meson.build
+0
-1
No files found.
libs/gst/helpers/meson.build
View file @
38ec9546
...
...
@@ -3,7 +3,6 @@ executable('gst-plugin-scanner',
c_args : gst_c_args,
include_directories : [configinc],
dependencies : [gobject_dep, gmodule_dep, glib_dep, mathlib, gst_dep],
link_with : [printf_lib],
install_dir : helpers_install_dir,
install: true,
)
...
...
@@ -124,7 +123,6 @@ if have_ptp
c_args : gst_c_args,
include_directories : [configinc, libsinc],
dependencies : [gio_dep, gobject_dep, glib_dep, mathlib, gst_dep, cap_dep],
link_with : [printf_lib],
install_dir : helpers_install_dir,
install : true)
...
...
plugins/tracers/meson.build
View file @
38ec9546
...
...
@@ -20,7 +20,6 @@ gst_tracers = library('gstcoretracers',
c_args : tracers_args,
include_directories : [configinc],
dependencies : [gst_dep],
link_with : printf_lib,
install : true,
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
)
...
...
tests/benchmarks/meson.build
View file @
38ec9546
...
...
@@ -14,7 +14,6 @@ benchmarks = [
foreach b : benchmarks
executable(b, '@0@.c'.format(b),
c_args : gst_c_args,
link_with : [printf_lib],
dependencies : [gobject_dep, gmodule_dep, glib_dep, gst_dep, gst_controller_dep],
)
endforeach
tools/meson.build
View file @
38ec9546
...
...
@@ -9,7 +9,6 @@ foreach tool : tools
install: true,
include_directories : [configinc],
dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
link_with: [printf_lib],
c_args: gst_c_args,
)
...
...
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