Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
Console
Commits
c327aa35
Verified
Commit
c327aa35
authored
Nov 20, 2021
by
Zander Brown
🔲
Browse files
build: ensure enums are built before we use them
Hopefully prevent random races where the binary is built before enums
parent
d91293f8
Pipeline
#334919
passed with stage
in 3 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/meson.build
View file @
c327aa35
...
...
@@ -52,7 +52,7 @@ kgx_sources += gnome.compile_resources('kgx-resources',
dependencies: style_deps
)
kgx_
source
s
+
= gnome.mkenums_simple('kgx-enums',
kgx_
enum
s = gnome.mkenums_simple('kgx-enums',
sources: [
'kgx-close-dialog.h',
'kgx-terminal.h',
...
...
@@ -61,7 +61,7 @@ kgx_sources += gnome.mkenums_simple('kgx-enums',
])
kgx_lib = library (bin_name,
kgx_sources,
kgx_sources
+ kgx_enums
,
dependencies: kgx_deps,
install: true,
install_dir: pkglibdir,
...
...
@@ -69,7 +69,7 @@ kgx_lib = library (bin_name,
)
kgx_inc = include_directories('.')
kgx_dep = declare_dependency (sources: [config_h],
kgx_dep = declare_dependency (sources: [config_h
, kgx_enums
],
include_directories: kgx_inc,
link_with: kgx_lib,
dependencies: kgx_deps)
...
...
Ivan Molodetskikh
@YaLTeR
mentioned in issue
#115
·
Jan 26, 2022
mentioned in issue
#115
mentioned in issue #115
Toggle commit list
Write
Preview
Supports
Markdown
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