mirror of
https://github.com/MaJerle/lwmem.git
synced 2025-01-13 21:42:53 +08:00
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
|
}
|
|
},
|
|
{
|
|
"name": "Win32-Debug",
|
|
"inherits": "default",
|
|
"toolchainFile": "${sourceDir}/cmake/i686-w64-mingw32-gcc.cmake",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "Win64-Debug",
|
|
"inherits": "default",
|
|
"toolchainFile": "${sourceDir}/cmake/x86_64-w64-mingw32-gcc.cmake",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "Win32-Debug",
|
|
"configurePreset": "Win32-Debug"
|
|
},
|
|
{
|
|
"name": "Win64-Debug",
|
|
"configurePreset": "Win64-Debug"
|
|
}
|
|
]
|
|
} |