From d3a49fe20b49aa181af057668c50e36a484ed755 Mon Sep 17 00:00:00 2001 From: jjm2317 Date: Thu, 17 Jul 2025 00:55:18 +0900 Subject: [PATCH] docs: update test setup command to use `meson setup [options]` --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c833c63..123820ba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ ThorVG uses GitHub infrastructure to automatically assign code reviewers for you After updating the ThorVG code, please ensure your changes don't break the library. We recommend conducting unit tests. You can easily run them using the following build commands:
` -$meson . build -Dtests=true -Dloaders="all" -Dsavers="all" -Dbindings="capi" -Dtools="all" -Dlog=true +$meson setup build -Dtests=true -Dloaders="all" -Dsavers="all" -Dbindings="capi" -Dtools="all" -Dlog=true `
`