Skip to content

Commit

Permalink
Fix variable names for dependencies in installation example (fix #242)
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Jan 24, 2024
1 parent c7a09bc commit b6083b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ Note that due to Meson design, dependencies must be explicitly provided.
gobject = dependency('gobject-2.0')
gio = dependency('gio-2.0')
soup = dependency('libsoup-2.4')
vsgi = subproject('valum').get_variable('vsgi')
valum = subproject('valum').get_variable('valum')
vsgi = subproject('valum').get_variable('vsgi_dep')
valum = subproject('valum').get_variable('valum_dep')
executable('app', 'app.vala',
dependencies: [glib, gobject, gio, soup, vsgi, valum])
Expand Down

0 comments on commit b6083b3

Please sign in to comment.