From 7efd6890bc98ed15b4e0da792959ab7560259dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 23 Sep 2023 20:39:51 +0800 Subject: [PATCH] Docker README: use `RelWithDebInfo` build type by default --- .devcontainer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 39cdfc1d8..a4020b780 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -15,7 +15,7 @@ Without GUI. ```sh -cmake -DNGP_BUILD_WITH_GUI=off ./ -B ./build +cmake -DNGP_BUILD_WITH_GUI=off ./ -B ./build -DCMAKE_BUILD_TYPE=RelWithDebInfo cmake --build build --config RelWithDebInfo -j 16 ``` @@ -28,6 +28,6 @@ xhost +x ``` Build the project inside the docker container. ```sh -cmake ./ -B ./build +cmake ./ -B ./build -DCMAKE_BUILD_TYPE=RelWithDebInfo cmake --build build --config RelWithDebInfo -j 16 -``` \ No newline at end of file +```