Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gxml
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Canek Peláez Valdés
Gxml
Commits
c6d7f6ef
Commit
c6d7f6ef
authored
5 years ago
by
Daniel Espinosa
Browse files
Options
Downloads
Patches
Plain Diff
meson: Rename options
parent
1bbc2ffd
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
gxml/meson.build
+2
-2
2 additions, 2 deletions
gxml/meson.build
meson.build
+1
-1
1 addition, 1 deletion
meson.build
meson_options.txt
+3
-3
3 additions, 3 deletions
meson_options.txt
test/meson.build
+1
-1
1 addition, 1 deletion
test/meson.build
with
7 additions
and
7 deletions
gxml/meson.build
+
2
−
2
View file @
c6d7f6ef
...
@@ -170,10 +170,10 @@ libgxml = library(VERSIONED_PROJECT_NAME,
...
@@ -170,10 +170,10 @@ libgxml = library(VERSIONED_PROJECT_NAME,
true
,
true
,
join_paths
(
get_option
(
'includedir'
),
'gxml-@0@'
.
format
(
API_VERSION
),
'gxml'
),
join_paths
(
get_option
(
'includedir'
),
'gxml-@0@'
.
format
(
API_VERSION
),
'gxml'
),
vapidir
,
vapidir
,
not
get_option
(
'
disable-
introspection'
)
get_option
(
'introspection'
)
])
])
if
not
get_option
(
'
disable-
introspection'
)
if
get_option
(
'introspection'
)
g_ir_compiler
=
find_program
(
'g-ir-compiler'
,
required
:
false
)
g_ir_compiler
=
find_program
(
'g-ir-compiler'
,
required
:
false
)
if
g_ir_compiler
.
found
()
if
g_ir_compiler
.
found
()
custom_target
(
'typelib'
,
custom_target
(
'typelib'
,
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
1
View file @
c6d7f6ef
...
@@ -22,7 +22,7 @@ inc_rooth_dep = declare_dependency (include_directories : inc_rooth)
...
@@ -22,7 +22,7 @@ inc_rooth_dep = declare_dependency (include_directories : inc_rooth)
subdir
(
'po'
)
subdir
(
'po'
)
subdir
(
'vapi'
)
subdir
(
'vapi'
)
subdir
(
'gxml'
)
subdir
(
'gxml'
)
if
not
get_option
(
'
disable-vala
docs'
)
if
get_option
(
'docs'
)
subdir
(
'docs'
)
subdir
(
'docs'
)
endif
endif
subdir
(
'test'
)
subdir
(
'test'
)
...
...
This diff is collapsed.
Click to expand it.
meson_options.txt
+
3
−
3
View file @
c6d7f6ef
option
(
'
enable-
tnode-tests'
,
type
:
'boolean'
,
value
:
false
,
description
:
'
Enable
TNode classes unit tests'
)
option
(
'tnode-tests'
,
type
:
'boolean'
,
value
:
false
,
description
:
'
Add
TNode classes unit tests'
)
option
(
'
disable-
introspection'
,
type
:
'boolean'
,
value
:
tru
e
,
description
:
'
Disabl
e GObject Introspection'
)
option
(
'introspection'
,
type
:
'boolean'
,
value
:
fals
e
,
description
:
'
Creat
e GObject Introspection
file definitions
'
)
option
(
'
disable-vala
docs'
,
type
:
'boolean'
,
value
:
tru
e
,
description
:
'
Disabl
e Vala Documentation'
)
option
(
'docs'
,
type
:
'boolean'
,
value
:
fals
e
,
description
:
'
Generat
e Vala Documentation'
)
This diff is collapsed.
Click to expand it.
test/meson.build
+
1
−
1
View file @
c6d7f6ef
...
@@ -21,7 +21,7 @@ files_tests = files ([
...
@@ -21,7 +21,7 @@ files_tests = files ([
])
])
tests_cargs
=
[]
tests_cargs
=
[]
if
get_option
(
'
enable-
tnode-tests'
)
if
get_option
(
'tnode-tests'
)
files_tests
+=
files
([
files_tests
+=
files
([
'EnumerationTest.vala'
,
'EnumerationTest.vala'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment