Skip to content

Commit

Permalink
Switched to using unescaped_variables to get the right behaviour ou…
Browse files Browse the repository at this point in the history
…t of the pkg-config variables
  • Loading branch information
dragonmux committed Mar 6, 2024
1 parent 2a3285a commit 3961e4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crunch++/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pkgconfig.generate(
filebase: 'crunch++',
version: meson.project_version(),
description: 'crunch++ is a unit testing framework for C++',
variables: {
unescaped_variables: {
'compile_args': '-I${includedir}',
'link_args': '-L${libdir} -lcrunch++',
},
Expand Down
2 changes: 1 addition & 1 deletion crunch/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pkgconfig.generate(
filebase: 'crunch',
version: meson.project_version(),
description: 'crunch is a unit testing framework for C',
variables: {
unescaped_variables: {
'compile_args': '-I${includedir}',
'link_args': '-L${libdir} -lcrunch',
},
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ project(
'b_ndebug=if-release'
],
version: '1.1.1',
meson_version: '>=0.58',
meson_version: '>=0.59',
subproject_dir: 'deps'
)

Expand Down

0 comments on commit 3961e4a

Please sign in to comment.