Initialize Repository

This commit is contained in:
Dynamitos
2024-04-17 19:45:25 +02:00
commit ad8f30f26e
5 changed files with 169 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{
"buildType": {
"default": "debug",
"description": "Configuration Type",
"choices": {
"debug": {
"short": "Debug",
"long": "Enable debugging and validation",
"buildType": "Debug"
},
"release": {
"short": "Release",
"long": "Optimize binary for speed",
"buildType": "Release"
},
"relwithdebinfo": {
"short": "RelWithDebInfo",
"long": "Release with debug symbols",
"buildType": "RelWithDebInfo"
}
}
},
"architecture": {
"default": "x64",
"description": "Platform Architecture",
"choices": {
"x64": {
"short": "x64",
"long": "amd64 platform",
"settings": {
"CMAKE_PLATFORM": "x64"
}
},
"arm64": {
"short": "arm64",
"long": "arm64 platform",
"settings": {
"CMAKE_PLATFORM": "arm64"
}
}
}
}
}