Skip to content

Commit

Permalink
Meson: fix deprecations, bump to 0.55
Browse files Browse the repository at this point in the history
  • Loading branch information
vhotspur authored and le-jzr committed Oct 22, 2023
1 parent aaafcc8 commit c63c2bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ project(
'HelenOS',
[ 'c', 'cpp' ],
default_options : ['buildtype=plain', 'c_std=gnu11', 'cpp_std=c++17', 'warning_level=2', 'werror=false', 'b_staticpic=false', 'prefix=/' ],
meson_version: '>=0.50.1',
meson_version: '>=0.55.0',
)

debug_options = false
Expand Down
6 changes: 3 additions & 3 deletions meson/part/extra_targets/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ run_target('config',
'-c', 'cd $1 && $2 $3 $4 $5',
'--',
meson.build_root(),
config_py.path(),
config_py.full_path(),
meson.source_root() / 'HelenOS.config',
meson.source_root() / 'defaults',
'--mask-platform',
Expand All @@ -50,7 +50,7 @@ if false
'-c', 'cd $1 && $2 $3 $4 random',
'--',
meson.build_root(),
config_py.path(),
config_py.full_path(),
meson.source_root() / 'HelenOS.config',
meson.source_root() / 'defaults',
]
Expand All @@ -76,7 +76,7 @@ if doxygen.found()
'-c', 'cd $1 && $2 $3',
'--',
meson.source_root() / 'doxygen',
doxygen.path(),
doxygen.full_path(),
_dox_cfg,
])
endif
Expand Down

0 comments on commit c63c2bb

Please sign in to comment.