1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
{
"environments": [
{
"environment": "x64",
"BuildDir": "${projectDir}\\out\\build-devel",
"InstallDir": "${projectDir}\\out\\install",
"GTKMM_BASEPATH": "${env.GTK2_X64_ROOT}"
}
],
"configurations": [
{
"name": "x64_Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64", "x64" ],
"buildRoot": "${env.BuildDir}\\${name}",
"installRoot": "${env.InstallDir}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-k 0",
"ctestCommandArgs": "",
"cmakeToolchain": "",
"variables": [
{
"name": "CMAKE_C_FLAGS_DEBUG",
"value": "/MDd /ZI /Od /RTC1",
"type": "STRING"
},
{
"name": "CMAKE_CXX_FLAGS_DEBUG",
"value": "/MDd /ZI /Od /RTC1 /wd4311",
"type": "STRING"
},
{
"name": "CMAKE_RC_DEBUG",
"value": "/nologo",
"type": "STRING"
},
{
"name": "CMAKE_EXE_LINKER_FLAGS_DEBUG",
"value": "/debug /INCREMENTAL /LTCG:OFF",
"type": "STRING"
},
{
"name": "CMAKE_SHARED_LINKER_FLAGS_DEBUG",
"value": "/debug /INCREMENTAL /LTCG:OFF",
"type": "STRING"
}
]
},
{
"name": "x64_RelWithDebInfo",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"inheritEnvironments": [ "msvc_x64_x64", "x64" ],
"buildRoot": "${env.BuildDir}\\${name}",
"installRoot": "${env.InstallDir}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-k 0",
"ctestCommandArgs": "",
"cmakeToolchain": "",
}
]
}
|