Skip to content

Commit

Permalink
Fix use of deprecated meson function.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregersn committed Nov 11, 2024
1 parent 071606b commit 2f702c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion screenshot-tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ testexe = executable('screenshot-tests', test_sources,
dependencies: [catch2.get_variable('catch2_dep'), eigen_dep],
install: false)

test('Screenshots', testexe, workdir: meson.source_root())
test('Screenshots', testexe, workdir: meson.project_source_root())

run_target('update_screenshots',
command: './update_screenshots.sh')
2 changes: 1 addition & 1 deletion tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ testexe = executable('unit-tests', test_sources,
install: false)


test('Unittests', testexe, workdir: meson.source_root())
test('Unittests', testexe, workdir: meson.project_source_root())

0 comments on commit 2f702c2

Please sign in to comment.