diff options
author | crupest <crupest@outlook.com> | 2019-05-23 20:59:19 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-05-23 20:59:19 +0800 |
commit | 691918e9e25b4f7e4731ff8d0e563c6316160254 (patch) | |
tree | 337455febfb35a5262d0740d04268d9b29b98d07 | |
parent | 5aac4ce0c2414956db979f077a5f6727473479aa (diff) | |
download | cru-691918e9e25b4f7e4731ff8d0e563c6316160254.tar.gz cru-691918e9e25b4f7e4731ff8d0e563c6316160254.tar.bz2 cru-691918e9e25b4f7e4731ff8d0e563c6316160254.zip |
Change the generator in CMakeSettings.json from ninja to visual studio 2019 since VS2019 v16.1 now supports it.
-rw-r--r-- | CMakeSettings.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json index 4931d795..4304869d 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -2,7 +2,7 @@ "configurations": [ { "name": "x86-Debug", - "generator": "Ninja", + "generator": "Visual Studio 16 2019", "inheritEnvironments": [ "msvc_x86_x64" ], "configurationType": "Debug", "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", @@ -10,7 +10,7 @@ }, { "name": "x86-Realse", - "generator": "Ninja", + "generator": "Visual Studio 16 2019", "inheritEnvironments": [ "msvc_x86_x64" ], "configurationType": "Release", "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", @@ -18,7 +18,7 @@ }, { "name": "x64-Debug", - "generator": "Ninja", + "generator": "Visual Studio 16 2019 Win64", "inheritEnvironments": [ "msvc_x64" ], "configurationType": "Debug", "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", @@ -26,7 +26,7 @@ }, { "name": "x64-Release", - "generator": "Ninja", + "generator": "Visual Studio 16 2019 Win64", "inheritEnvironments": [ "msvc_x64" ], "configurationType": "Release", "buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", |