Skip to content

Commit

Permalink
Remove toolchain file from cmakesettings
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahnic committed Aug 28, 2023
1 parent ed311cd commit 774c832
Showing 1 changed file with 43 additions and 49 deletions.
92 changes: 43 additions & 49 deletions CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,45 @@
{
"configurations": [
{
"name": "win-x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [
"msvc_x64_x64"
],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"variables": [
{
"name": "ARGUMENTUM_BUILD_TESTS",
"value": "True",
"type": "BOOL"
},
{
"name": "CMAKE_CXX_FLAGS",
"value": "/DWIN32 /D_WINDOWS /W4 /wd4100 /we4018 /GR /EHsc",
"type": "STRING"
}
],
"cmakeToolchain": "C:/opt/vcpkg/scripts/buildsystems/vcpkg.cmake"
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [
"msvc_x64_x64"
],
"cmakeToolchain": "C:/opt/vcpkg/scripts/buildsystems/vcpkg.cmake",
"variables": [
{
"name": "ARGUMENTUM_BUILD_TESTS",
"value": "True",
"type": "BOOL"
}
]
}
]
"configurations": [
{
"name": "win-x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"variables": [
{
"name": "ARGUMENTUM_BUILD_TESTS",
"value": "True",
"type": "BOOL"
},
{
"name": "CMAKE_CXX_FLAGS",
"value": "/DWIN32 /D_WINDOWS /W4 /wd4100 /we4018 /GR /EHsc",
"type": "STRING"
}
]
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "ARGUMENTUM_BUILD_TESTS",
"value": "True",
"type": "BOOL"
}
]
}
]
}

0 comments on commit 774c832

Please sign in to comment.