summaryrefslogtreecommitdiff
path: root/qhexedit2/.vscode
diff options
context:
space:
mode:
Diffstat (limited to 'qhexedit2/.vscode')
-rw-r--r--qhexedit2/.vscode/c_cpp_properties.json20
-rw-r--r--qhexedit2/.vscode/launch.json30
-rw-r--r--qhexedit2/.vscode/tasks.json48
3 files changed, 98 insertions, 0 deletions
diff --git a/qhexedit2/.vscode/c_cpp_properties.json b/qhexedit2/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..1f9c3c5
--- /dev/null
+++ b/qhexedit2/.vscode/c_cpp_properties.json
@@ -0,0 +1,20 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "includePath": [
+ "${workspaceFolder}/**",
+ "/usr/include/x86_64-linux-gnu/qt5/QtCore/",
+ "/usr/include/x86_64-linux-gnu/qt5/QtGui/",
+ "/usr/include/x86_64-linux-gnu/qt5/QtWidgets/",
+ "/usr/include/x86_64-linux-gnu/qt5/"
+ ],
+ "defines": [],
+ "compilerPath": "/usr/bin/gcc",
+ "cStandard": "gnu17",
+ "cppStandard": "gnu++14",
+ "intelliSenseMode": "linux-gcc-x64"
+ }
+ ],
+ "version": 4
+} \ No newline at end of file
diff --git a/qhexedit2/.vscode/launch.json b/qhexedit2/.vscode/launch.json
new file mode 100644
index 0000000..805c237
--- /dev/null
+++ b/qhexedit2/.vscode/launch.json
@@ -0,0 +1,30 @@
+{
+ // 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": [
+ {
+ "name": "(gdb) Starten",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/build/qhexedit",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "linux": {
+ "MIMode": "gdb",
+ "miDebuggerPath": "/usr/bin/gdb"
+ },
+ "setupCommands": [
+ {
+ "description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ],
+ "stopAtEntry": false,
+ }
+ ]
+} \ No newline at end of file
diff --git a/qhexedit2/.vscode/tasks.json b/qhexedit2/.vscode/tasks.json
new file mode 100644
index 0000000..7117c12
--- /dev/null
+++ b/qhexedit2/.vscode/tasks.json
@@ -0,0 +1,48 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "qmake",
+ "type": "shell",
+ "command": "qmake",
+ "args": [
+ "CONFIG+=debug",
+ "../example/qhexedit.pro"
+ ],
+ "options": {
+ "cwd": "${workspaceFolder}/build"
+ }
+ },
+ {
+ "label": "make",
+ "type": "shell",
+ "command": "make",
+ "args": ["-j", "12"],
+ "problemMatcher": [
+ "$gcc"
+ ],
+ "options": {
+ "cwd": "${workspaceFolder}/build"
+ }
+ },
+ {
+ "label": "make clean",
+ "type": "shell",
+ "command": "make",
+ "args": ["clean"],
+ "options": {
+ "cwd": "${workspaceFolder}/build"
+ }
+ },
+ {
+ "label": "Build",
+ "dependsOn": ["qmake", "make"],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ }
+ }
+ ]
+} \ No newline at end of file