From 5fe4a73eddb938ce6f866944e502e9209bd7020e Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Sat, 26 Nov 2022 21:19:41 +0100 Subject: [PATCH] meta: Improve debug build snippet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16a9330b..fff43453 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ The actual unit tests can be run with `nvapi64-tests.exe [@unit-tests]` to valid Producing a debug build and starting a debugging session with the test suite can be achieved with the following snippet: ```bash -meson --cross-file "./build-win64.txt" --buildtype "debugoptimized" -Denable_tests=True build/dev +meson setup --cross-file "./build-win64.txt" --buildtype "debugoptimized" -Denable_tests=True build/dev meson compile -C build/dev DXVK_LOG_LEVEL=none DXVK_NVAPI_LOG_LEVEL=none WINEDEBUG=-all WINEDLLOVERRIDES=nvapi64=n WINEPATH=build/dev/src winedbg --gdb build/dev/tests/nvapi64-tests.exe [@all]