From 4e5ffae00d648d63352fbf9d03ac8daa8e964fe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81oskot?= Date: Fri, 19 Oct 2018 19:07:01 +0200 Subject: [PATCH] Remove CMakeSettings.json for VS2017 as user-specific file [ci skip] This is a local file with user-specific settings which does not fit into the public git repository. --- CMakeSettings.json | 136 --------------------------------------------- 1 file changed, 136 deletions(-) delete mode 100644 CMakeSettings.json diff --git a/CMakeSettings.json b/CMakeSettings.json deleted file mode 100644 index 975206f9f..000000000 --- a/CMakeSettings.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "_comment": "CMakeSettings.json for building Boost.GIL tests and examples. See https://go.microsoft.com//fwlink//?linkid=834763 for more information about CMake integration with Visual Studio 2017 and this file.", - "environments": [ - { - "BuildDir": "${workspaceRoot}\\_build" - }, - { - "InstallDir": "${workspaceRoot}\\_install" - } - ], - "configurations": [ - { - "name": "x64-Debug-Ninja", - "generator": "Ninja", - "configurationType": "Debug", - "inheritEnvironments": [ "msvc_x64_x64" ], - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "cmakeCommandArgs": "", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { "name": "GIL_USE_CONAN", "value": "ON" } - ] - }, - { - "name": "x64-Release-Ninja", - "generator": "Ninja", - "configurationType": "RelWithDebInfo", - "inheritEnvironments": [ "msvc_x64_x64" ], - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "cmakeCommandArgs": "", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { "name": "GIL_USE_CONAN", "value": "ON" } - ] - }, - { - "name": "x86-Debug-Ninja", - "generator": "Ninja", - "configurationType": "Debug", - "inheritEnvironments": [ "msvc_x86" ], - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "cmakeCommandArgs": "", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { - "name": "GIL_USE_CONAN", - "value": "ON" - } - ] - }, - { - "name": "x86-Release-Ninja", - "generator": "Ninja", - "configurationType": "RelWithDebInfo", - "inheritEnvironments": [ "msvc_x86" ], - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "cmakeCommandArgs": "", - "buildCommandArgs": "-v", - "ctestCommandArgs": "", - "variables": [ - { "name": "GIL_USE_CONAN", "value": "ON" } - ] - }, - { - "name": "x64-Debug", - "generator": "Visual Studio 15 2017 Win64", - "configurationType": "Debug", - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "buildCommandArgs": "-m", - "cmakeCommandArgs": "", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CMAKE_TOOLCHAIN_FILE", - "value": "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" - } - ] - }, - { - "name": "x64-Release", - "generator": "Visual Studio 15 2017 Win64", - "configurationType": "Release", - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "buildCommandArgs": "-m", - "cmakeCommandArgs": "", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CMAKE_TOOLCHAIN_FILE", - "value": "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" - } - ] - }, - { - "name": "x86-Debug", - "generator": "Visual Studio 15 2017", - "configurationType": "Debug", - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "buildCommandArgs": "-m", - "cmakeCommandArgs": "", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CMAKE_TOOLCHAIN_FILE", - "value": "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" - } - ] - }, - { - "name": "x86-Release", - "generator": "Visual Studio 15 2017", - "configurationType": "Release", - "buildRoot": "${env.BuildDir}\\${name}", - "installRoot": "${env.InstallDir}\\${name}", - "buildCommandArgs": "-m", - "cmakeCommandArgs": "", - "ctestCommandArgs": "", - "variables": [ - { - "name": "CMAKE_TOOLCHAIN_FILE", - "value": "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" - } - ] - } - ] -}