aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
committerLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
commitf51ee604991743b2eb4a61bc200843d7191d48e7 (patch)
treee9065084d90af06fb73d3714c758cbd9da9e71f3 /.vscode
parentea776a2a9fd88df4c9335feadd19e4c310f78826 (diff)
Added missing files
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/c_cpp_properties.json26
-rw-r--r--.vscode/launch.json34
-rw-r--r--.vscode/settings.json8
-rw-r--r--.vscode/tasks.json28
4 files changed, 96 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..604fa76
--- /dev/null
+++ b/.vscode/c_cpp_properties.json
@@ -0,0 +1,26 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "compilerPathInCppPropertiesJson": "/usr/bin/clang",
+ "includePath": [
+ "/home/ladik/AppDir/StormLib/**"
+ ],
+ "defines": [],
+ "compileCommands": "${workspaceFolder}/build/compile_commands.json",
+ "cStandard": "c17",
+ "cppStandard": "c++14",
+ "intelliSenseMode": "linux-clang-x64",
+ "mergeConfigurations": false,
+ "compilerPath": "/usr/bin/clang",
+ "browse": {
+ "path": [
+ "${workspaceFolder}"
+ ],
+ "limitSymbolsToIncludedHeaders": true
+ },
+ "configurationProvider": "ms-vscode.cmake-tools"
+ }
+ ],
+ "version": 4
+} \ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..229422d
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,34 @@
+{
+ // 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",
+ "program": "./build/storm_test",
+ "configurations": [
+ {
+ "name": "(gdb) Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/build/storm_test",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ },
+ {
+ "description": "Set Disassembly Flavor to Intel",
+ "text": "-gdb-set disassembly-flavor intel",
+ "ignoreFailures": true
+ }
+ ]
+ }
+
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..f4905d4
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,8 @@
+{
+ //test ok
+ "cmake.configureArgs": [
+ "-DCMAKE_BUILD_TYPE=Debug",
+ "-DSTORM_BUILD_TESTS=on",
+ ]
+ }
+ \ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..4217112
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,28 @@
+{
+ "tasks": [
+ {
+ "type": "cppbuild",
+ "label": "C/C++: cpp build active file",
+ "command": "/usr/bin/cpp",
+ "args": [
+ "-fdiagnostics-color=always",
+ "-g",
+ "${file}",
+ "-o",
+ "${fileDirname}/${fileBasenameNoExtension}"
+ ],
+ "options": {
+ "cwd": "${fileDirname}"
+ },
+ "problemMatcher": [
+ "$gcc"
+ ],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "detail": "Task generated by Debugger."
+ }
+ ],
+ "version": "2.0.0"
+} \ No newline at end of file