Initial commit

This commit is contained in:
MechSlayer 2025-09-05 04:01:27 +02:00
commit d1a39262d8
6 changed files with 390 additions and 0 deletions

117
CMakePresets.json Normal file
View file

@ -0,0 +1,117 @@
{
"version": 3,
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang-cl.exe",
"CMAKE_CXX_COMPILER": "clang-cl.exe",
"CMAKE_EXPORT_COMPILE_COMMANDS": true
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "linux-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_EXPORT_COMPILE_COMMANDS": true
},
"condition": {
"type": "notEquals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "win64-debug",
"displayName": "x64 Debug",
"inherits": "windows-base",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "win64-debug-shared",
"displayName": "x64 Debug Shared",
"inherits": "win64-debug",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
}
},
{
"name": "win64-release",
"displayName": "x64 Release",
"inherits": "windows-base",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "win64-release-shared",
"displayName": "x64 Release Shared",
"inherits": "win64-release",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
}
},
{
"name": "linux64-debug",
"displayName": "x64 Debug",
"inherits": "linux-base",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux64-debug-shared",
"displayName": "x64 Debug Shared",
"inherits": "linux64-debug",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
}
},
{
"name": "linux64-release",
"displayName": "x64 Release",
"inherits": "linux-base",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "linux64-release-shared",
"displayName": "x64 Release Shared",
"inherits": "linux64-release",
"cacheVariables": {
"BUILD_SHARED_LIBS": "ON"
}
}
]
}