updates submodules and adds cmake presets

This commit is contained in:
Eyck Jentzsch 2025-03-14 07:15:21 +01:00
parent 140c2d67b1
commit e192c71104
5 changed files with 43 additions and 3 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@
/.direnv
/TGC_C_XRB/
/.envrc.eyck
/.cache

39
CMakePresets.json Normal file
View File

@ -0,0 +1,39 @@
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "Debug",
"displayName": "Debug build",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "Release",
"displayName": "Release build",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}
],
"buildPresets": [
{
"name": "Debug",
"description": "Debug build",
"displayName": "Debug"
}
]
}

@ -1 +1 @@
Subproject commit b9da8fa4c10af7ba2e794934c0eee3581e3bd046
Subproject commit 01d81b03fbe6d5d3ed7f4655b88655a1e124df1f

@ -1 +1 @@
Subproject commit 9f5326c1103700b4fdd97389b9a9ad431af845d2
Subproject commit 23842742a6a3ff449d75be688eaca41f3a69c46b

2
scc

@ -1 +1 @@
Subproject commit a37bde57190bdba96b82e4f95869a09bc3773784
Subproject commit 7960982947592b1bd97b71c5615a5e2b82a920c0