Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Olivier Crête
libnice
Commits
fbe492fd
Commit
fbe492fd
authored
Nov 22, 2018
by
Víctor Manuel Jáquez Leal
Committed by
Olivier Crête
Dec 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson: disable introspection if g-ir-scanner is not found
parent
8ce2b76b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
meson.build
meson.build
+2
-0
nice/meson.build
nice/meson.build
+1
-1
No files found.
meson.build
View file @
fbe492fd
...
...
@@ -219,6 +219,8 @@ if ignored_iface_prefix != ''
cdata.set_quoted('IGNORED_IFACE_PREFIX', ignored_iface_prefix)
endif
gir = find_program('g-ir-scanner', required : get_option('introspection'))
subdir('agent')
subdir('stun')
subdir('socket')
...
...
nice/meson.build
View file @
fbe492fd
...
...
@@ -32,7 +32,7 @@ install_headers('nice.h', subdir: 'nice')
nice_include = include_directories('.')
# introspection
build_gir = not get_option('introspection').disabled() and get_option('default_library') != 'static'
build_gir =
gir.found() and
not get_option('introspection').disabled() and get_option('default_library') != 'static'
if build_gir
nice_gen_sources += [
gnome.generate_gir(libnice,
...
...
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