diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2023-06-09 11:34:56 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2023-06-09 11:34:56 +0200 |
| commit | 7ce8f285efd6d3c036e54423881b85ab67c071bb (patch) | |
| tree | 2e65b52fc60dcceda80efc207839c23ffb80e1fa /.vscode | |
| parent | c740152b77bbbc8112528931b158d5115b695cb0 (diff) | |
| parent | 306982e16c4191604840e33b20db9479de977bbb (diff) | |
| download | newtype-7ce8f285efd6d3c036e54423881b85ab67c071bb.tar.xz newtype-7ce8f285efd6d3c036e54423881b85ab67c071bb.zip | |
concepts: move from enable_if to concepts
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index d1852ca..eeb9f71 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -3,13 +3,14 @@ { "name": "Linux", "includePath": [ - "${workspaceFolder}/**" + "${workspaceFolder}/source/lib/include" ], "defines": [], - "compilerPath": "/usr/bin/gcc", + "compilerPath": "/usr/bin/g++", "cppStandard": "c++20", "intelliSenseMode": "gcc-x64", - "configurationProvider": "ms-vscode.cmake-tools" + "configurationProvider": "ms-vscode.cmake-tools", + "compileCommands": "${workspaceFolder}/build/compile_commands.json" } ], "version": 4 |
