File tree 4 files changed +33
-1
lines changed
4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,13 @@ __pycache__
2
2
build *
3
3
compile_commands.json
4
4
.cache /
5
+ .ccache /
5
6
.idea /
6
7
.vscode /
8
+ ! .vscode /c_cpp_properties.json
9
+ ! .vscode /cmake-variants.yaml
10
+ ! .vscode /README.md
7
11
.cores /
8
- .ccache /
9
12
.pgdata /
10
13
cmake-build- *
11
14
Testing /
Original file line number Diff line number Diff line change
1
+ This is the minimal configuration for VSCode IDE.
2
+ If you don't use VSCode, feel free to delete this directory.
Original file line number Diff line number Diff line change
1
+ {
2
+ "configurations" : [
3
+ {
4
+ "name" : " CMake" ,
5
+ "compileCommands" : " ${config:cmake.buildDirectory}/compile_commands.json" ,
6
+ "configurationProvider" : " ms-vscode.cmake-tools"
7
+ }
8
+ ],
9
+ "version" : 4
10
+ }
Original file line number Diff line number Diff line change
1
+ buildType :
2
+ default : debug
3
+ choices :
4
+ debug :
5
+ short : Debug
6
+ long : Unoptimized debug build with sanitizers
7
+ buildType : Debug
8
+ settings :
9
+ CMAKE_EXPORT_COMPILE_COMMANDS : ON
10
+ USERVER_SANITIZE : addr ub
11
+
12
+ release :
13
+ short : Release
14
+ long : Optimized build
15
+ buildType : Release
16
+ settings :
17
+ CMAKE_EXPORT_COMPILE_COMMANDS : ON
You can’t perform that action at this time.
0 commit comments