generated from Riley/Conan-C
Initial commit
This commit is contained in:
commit
605a30e2f8
13 changed files with 240 additions and 0 deletions
26
.vscode-example/c_cpp_properties.json
Normal file
26
.vscode-example/c_cpp_properties.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE"
|
||||
],
|
||||
"windowsSdkVersion": "10.0.22621.0",
|
||||
"compilerPath": "cl.exe",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "windows-msvc-x64",
|
||||
"configurationProvider": "mesonbuild.mesonbuild",
|
||||
"compileCommands": [
|
||||
"${workspaceFolder}/build/meson-src/compile_commands.json"
|
||||
],
|
||||
"mergeConfigurations": true
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
23
.vscode-example/launch.json
Normal file
23
.vscode-example/launch.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"cwd": "${workspaceRoot}",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"name": "Launch Program",
|
||||
"program": "${workspaceFolder}/build/meson-src/main.exe",
|
||||
"preLaunchTask": "build",
|
||||
"logging": {
|
||||
"engineLogging": true,
|
||||
"trace": true,
|
||||
"traceResponse": true
|
||||
}
|
||||
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
3
.vscode-example/settings.json
Normal file
3
.vscode-example/settings.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild"
|
||||
}
|
||||
12
.vscode-example/tasks.json
Normal file
12
.vscode-example/tasks.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// filepath: c:\Users\Riley\OneDrive\Documents\Code\C\Conan-C\.vscode\tasks.json
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}/build.bat debug",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue