Skip to content

Commit

Permalink
Fix include_directories kwarg of type string meson warning
Browse files Browse the repository at this point in the history
  • Loading branch information
adel-mamin committed Jul 29, 2024
1 parent 0fbac1a commit 90949fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cargs = library('cargs', 'src/cargs.c',

install_headers('include/cargs.h')

cargs_dep = declare_dependency(include_directories: 'include', link_with: cargs)
cargs_dep = declare_dependency(include_directories: cargs_inc, link_with: cargs)

if meson.version().version_compare('>= 0.54.0')
meson.override_dependency('cargs', cargs_dep)
Expand Down

0 comments on commit 90949fc

Please sign in to comment.