From d78b422c53b925fd86c6fdfbcaa958a3d45ecc7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 19 Sep 2023 14:32:10 +0800 Subject: [PATCH] README: add debug symbols to default build on Linux --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81db6c0c7..88fca71ba 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ $ cd instant-ngp Then, use CMake to build the project: (on Windows, this must be in a [developer command prompt](https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line?view=msvc-160#developer_command_prompt)) ```sh -instant-ngp$ cmake . -B build +instant-ngp$ cmake . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo instant-ngp$ cmake --build build --config RelWithDebInfo -j ```