diff --git a/.vscode/settings.json b/.vscode/settings.json index 683483f..9322c9a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -79,5 +79,18 @@ "typeinfo": "cpp", "variant": "cpp" }, - "editor.formatOnSave": true + "editor.formatOnSave": true, + "testMate.cpp.test.advancedExecutables": [ + { + "pattern": "{build,Build,BUILD,out,Out,OUT}/**/*{test,Test,TEST}*", + "catch2": { + "testGrouping": { + "groupByExecutable": { + "label": "${filename}", + "groupByTags": true + } + } + } + } + ] } \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 2256e8f..3b41b05 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14) project(raytracing_challenge VERSION 0.1 - DESCRIPTION "Raytracing Challenge in c++" + DESCRIPTION "Raytracing Challenge in C++" ) add_subdirectory(raytracing)