Skip to content

Commit

Permalink
meson.build: use naming convention as described in meson docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed May 26, 2023
1 parent 072cfa8 commit e146751
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ read_chunk = executable(
'read-chunk.c',
install: false,
c_args: test_c_args,
dependencies: libsqsh_dependency,
dependencies: libsqsh_dep,
)

depends = []
Expand All @@ -92,7 +92,7 @@ foreach p : sqsh_test
sources,
install: false,
c_args: test_c_args,
dependencies: libsqsh_dependency,
dependencies: libsqsh_dep,
)
test(p, t, env: {'SQSH_LZO_HELPER_PATH': lzo_helper_path}, depends: depends)
endforeach
Expand Down
4 changes: 2 additions & 2 deletions tools/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ foreach src : tool_sources
src,
c_args: c_args,
install: not meson.is_subproject(),
dependencies: libsqsh_dependency,
dependencies: libsqsh_dep,
)
tools += {tool_name: tool}
endforeach
Expand All @@ -27,7 +27,7 @@ if fuse.found()
'fs.c',
c_args: c_args,
install: not meson.is_subproject(),
dependencies: [libsqsh_dependency, fuse],
dependencies: [libsqsh_dep, fuse],
)
tools += {'sqshfs': tool}
endif

0 comments on commit e146751

Please sign in to comment.