Initial commit

This commit is contained in:
2026-01-19 12:12:59 +00:00
commit 0f33a92fa7
13 changed files with 582 additions and 0 deletions

27
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/DemoProject/include",
"${workspaceFolder}/DemoProject/src",
"${workspaceFolder}/TSE/TSE_Base/include",
"${workspaceFolder}/TSE/TSE_Base/src",
"${workspaceFolder}/TSE/TSE_Core/include",
"${workspaceFolder}/TSE/TSE_Core/src",
"${workspaceFolder}/TSE/TSE_Math/src",
"${workspaceFolder}/TSE/TSE_GlfwImpl/include",
"${workspaceFolder}/TSE/TSE_GlfwImpl/src",
"${workspaceFolder}/TSE/TSE_GlfwOpenGlImpl/include",
"${workspaceFolder}/TSE/TSE_GlfwOpenGlImpl/src",
"${workspaceFolder}/TSE/TSE_Editor/src"
],
"defines": [],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}

30
.vscode/launch.json vendored Normal file
View File

@@ -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": "Debug Linux",
"type": "cppdbg",
"request": "launch",
"MIMode": "gdb",
"program": "${workspaceFolder}/bin/DemoProject",
"preLaunchTask": "build_debug_linux",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin"
},
{
"name": "Debug Windows",
"type": "cppvsdbg",
"request": "launch",
//"MIMode": "gdb",
"program": "${workspaceFolder}/bin/DemoProject",
"preLaunchTask": "build_debug_linux",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin"
}
]
}

93
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,93 @@
{
"version": "2.0.0",
"tasks": [
//Build Linux
{
"label": "make_linux",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/build",
"--target",
"all"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "build_debug_linux_cmake",
"type": "shell",
"command": "cmake",
"args": [
"-S",
"${workspaceFolder}/.",
"-B",
"${workspaceFolder}/./build",
"-DDEBUG=ON",
"-G Ninja",
"-DCMAKE_C_COMPILER=clang",
"-DCMAKE_CXX_COMPILER=clang++",
"-DCMAKE_LINKER=lld-link",
"-DCMAKE_BUILD_TYPE=Debug"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "build_release_linux_cmake",
"type": "shell",
"command": "cmake",
"args": [
"-S",
"${workspaceFolder}/.",
"-B",
"${workspaceFolder}/./build",
"-DDEBUG=OFF",
"-G Ninja",
"-DCMAKE_C_COMPILER=clang",
"-DCMAKE_CXX_COMPILER=clang++",
"-DCMAKE_LINKER=lld-link",
"-DCMAKE_BUILD_TYPE=Release"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "build_debug_linux",
"dependsOn": [
"build_debug_linux_cmake",
"make_linux"
],
"dependsOrder": "sequence",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build_release_linux",
"dependsOn": [
"build_release_linux_cmake",
"make_linux"
],
"dependsOrder": "sequence",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}