Merge branch 'main' of https://git.kerner.dev/yeet/TSE-RTS into DICOM_Viewer
This commit is contained in:
30
.vscode/launch.json
vendored
30
.vscode/launch.json
vendored
@@ -5,23 +5,45 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug Linux",
|
||||
"name": "Debug Linux GLFW",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"MIMode": "gdb",
|
||||
"program": "${workspaceFolder}/bin/TSE-RTS",
|
||||
"preLaunchTask": "build_debug_linux",
|
||||
"preLaunchTask": "build_debug_GLFW_linux",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin"
|
||||
},
|
||||
{
|
||||
"name": "Debug Windows",
|
||||
"name": "Debug Linux SDL3",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"MIMode": "gdb",
|
||||
"program": "${workspaceFolder}/bin/TSE-RTS",
|
||||
"preLaunchTask": "build_debug_SDL3_linux",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin"
|
||||
},
|
||||
{
|
||||
"name": "Debug Windows GLFW",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
//"MIMode": "gdb",
|
||||
"program": "${workspaceFolder}/bin/TSE-RTS",
|
||||
"preLaunchTask": "build_debug_linux",
|
||||
"preLaunchTask": "build_debug_GLFW_linux",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin"
|
||||
},
|
||||
{
|
||||
"name": "Debug Windows SDL3",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
//"MIMode": "gdb",
|
||||
"program": "${workspaceFolder}/bin/TSE-RTS",
|
||||
"preLaunchTask": "build_debug_SDL3_linux",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}/bin"
|
||||
|
||||
87
.vscode/tasks.json
vendored
87
.vscode/tasks.json
vendored
@@ -20,7 +20,7 @@
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build_debug_linux_cmake",
|
||||
"label": "build_debug_SDL3_linux_cmake",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
@@ -28,7 +28,6 @@
|
||||
"${workspaceFolder}/.",
|
||||
"-B",
|
||||
"${workspaceFolder}/./build",
|
||||
"-DDEBUG=ON",
|
||||
"-G Ninja",
|
||||
"-DCMAKE_C_COMPILER=clang",
|
||||
"-DCMAKE_CXX_COMPILER=clang++",
|
||||
@@ -41,9 +40,30 @@
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build_release_linux_cmake",
|
||||
},{
|
||||
"label": "build_debug_GLFW_linux_cmake",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"-S",
|
||||
"${workspaceFolder}/.",
|
||||
"-B",
|
||||
"${workspaceFolder}/./build",
|
||||
"-G Ninja",
|
||||
"-DCMAKE_C_COMPILER=clang",
|
||||
"-DCMAKE_CXX_COMPILER=clang++",
|
||||
"-DCMAKE_LINKER=lld-link",
|
||||
"-DCMAKE_BUILD_TYPE=Debug",
|
||||
"-DUSE_GLFW=ON"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build_release_SDL3_linux_cmake",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
@@ -51,7 +71,6 @@
|
||||
"${workspaceFolder}/.",
|
||||
"-B",
|
||||
"${workspaceFolder}/./build",
|
||||
"-DDEBUG=OFF",
|
||||
"-G Ninja",
|
||||
"-DCMAKE_C_COMPILER=clang",
|
||||
"-DCMAKE_CXX_COMPILER=clang++",
|
||||
@@ -66,9 +85,31 @@
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build_debug_linux",
|
||||
"label": "build_release_GLFW_linux_cmake",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"-S",
|
||||
"${workspaceFolder}/.",
|
||||
"-B",
|
||||
"${workspaceFolder}/./build",
|
||||
"-G Ninja",
|
||||
"-DCMAKE_C_COMPILER=clang",
|
||||
"-DCMAKE_CXX_COMPILER=clang++",
|
||||
"-DCMAKE_LINKER=lld-link",
|
||||
"-DCMAKE_BUILD_TYPE=Release",
|
||||
"-DUSE_GLFW=ON"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build_debug_SDL3_linux",
|
||||
"dependsOn": [
|
||||
"build_debug_linux_cmake",
|
||||
"build_release_SDL3_linux_cmake",
|
||||
"make_linux"
|
||||
],
|
||||
"dependsOrder": "sequence",
|
||||
@@ -79,9 +120,35 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "build_release_linux",
|
||||
"label": "build_release_SDL3_linux",
|
||||
"dependsOn": [
|
||||
"build_release_linux_cmake",
|
||||
"build_release_SDL3_linux_cmake",
|
||||
"make_linux"
|
||||
],
|
||||
"dependsOrder": "sequence",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "build_debug_GLFW_linux",
|
||||
"dependsOn": [
|
||||
"build_release_GLFW_linux_cmake",
|
||||
"make_linux"
|
||||
],
|
||||
"dependsOrder": "sequence",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "build_release_GLFW_linux",
|
||||
"dependsOn": [
|
||||
"build_release_GLFW_linux_cmake",
|
||||
"make_linux"
|
||||
],
|
||||
"dependsOrder": "sequence",
|
||||
|
||||
2
TSE
2
TSE
Submodule TSE updated: 51a6ea1328...8c0152c3b4
Reference in New Issue
Block a user