aboutsummaryrefslogtreecommitdiff
path: root/CMakeSettings.json
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2018-03-09 21:36:10 +0100
committerAndreas Grois <andi@grois.info>2018-03-09 21:36:10 +0100
commit3b734f0d6b9e28c1f2c4ae54e3f46e573e02f4a5 (patch)
tree444542870666e41594e7b493f625ade81d64f885 /CMakeSettings.json
Initial Commit
Diffstat (limited to 'CMakeSettings.json')
-rw-r--r--CMakeSettings.json105
1 files changed, 105 insertions, 0 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json
new file mode 100644
index 0000000..8bdf5ed
--- /dev/null
+++ b/CMakeSettings.json
@@ -0,0 +1,105 @@
+{
+ // See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
+ "configurations": [
+ {
+ "name": "x86-Debug",
+ "generator": "Ninja",
+ "configurationType": "Debug",
+ "inheritEnvironments": [ "msvc_x86" ],
+ "buildRoot": "${projectDir}\\build\\Debug_x86",
+ "installRoot": "${env.ProgramFiles(x86)}\\${name}",
+ "cmakeCommandArgs": "",
+ "buildCommandArgs": "",
+ "ctestCommandArgs": "",
+ "variables": [
+ {
+ "name": "CMAKE_C_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_CXX_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_SYSTEM_NAME",
+ "value": "Windows"
+ }
+ ]
+ },
+ {
+ "name": "x86-Release",
+ "generator": "Ninja",
+ "configurationType": "RelWithDebInfo",
+ "inheritEnvironments": [ "msvc_x86" ],
+ "buildRoot": "${projectDir}\\build\\Release_x86",
+ "installRoot": "${env.ProgramFiles(x86)}\\${name}",
+ "cmakeCommandArgs": "",
+ "buildCommandArgs": "",
+ "ctestCommandArgs": "",
+ "variables": [
+ {
+ "name": "CMAKE_C_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_CXX_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_SYSTEM_NAME",
+ "value": "Windows"
+ }
+ ]
+ },
+ {
+ "name": "x64-Debug",
+ "generator": "Ninja",
+ "configurationType": "Debug",
+ "inheritEnvironments": [ "msvc_x64" ],
+ "buildRoot": "${projectDir}\\build\\Release_x64",
+ "installRoot": "${env.ProgramFiles}\\${name}",
+ "cmakeCommandArgs": "",
+ "buildCommandArgs": "",
+ "ctestCommandArgs": "",
+ "variables": [
+ {
+ "name": "CMAKE_C_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_CXX_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_SYSTEM_NAME",
+ "value": "Windows"
+ }
+ ]
+ },
+ {
+ "name": "x64-Release",
+ "generator": "Ninja",
+ "configurationType": "RelWithDebInfo",
+ "inheritEnvironments": [ "msvc_x64" ],
+ "buildRoot": "${projectDir}\\build\\Release_x64",
+ "installRoot": "${env.ProgramFiles}\\${name}",
+ "cmakeCommandArgs": "",
+ "buildCommandArgs": "",
+ "ctestCommandArgs": "",
+ "variables": [
+ {
+ "name": "CMAKE_C_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_CXX_COMPILER",
+ "value": "cl.exe"
+ },
+ {
+ "name": "CMAKE_SYSTEM_NAME",
+ "value": "Windows"
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file