diff options
author | rtk0c <[email protected]> | 2021-06-01 21:40:50 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-06-01 21:40:50 -0700 |
commit | 016d58996db755630f8b41ddbef67516fe0c13b2 (patch) | |
tree | 4d3d6ca1759cf0a6a81014697c0faceee9375fb9 | |
parent | 9a8a63b59020bc87d17fd6ce2c7224fd05afe558 (diff) |
Allow visual studio project setup
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CMakeSettings.json | 15 |
2 files changed, 16 insertions, 0 deletions
@@ -39,6 +39,7 @@ cmake-* /.cache /.clangd /.idea +/.vs # qtcreator generated files *.pro.user* diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 0000000..9c1bc9d --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,15 @@ +{
+ "configurations": [
+ {
+ "name": "x64-Debug",
+ "generator": "Ninja",
+ "configurationType": "Debug",
+ "inheritEnvironments": [ "msvc_x64" ],
+ "buildRoot": "${projectDir}\\build\\${name}",
+ "installRoot": "${projectDir}\\out\\install\\${name}",
+ "cmakeCommandArgs": "-GNinja -DCMAKE_UNITY_BUILD=ON -DBUILD_CORE_WITH_DX12_BACKEND=ON -DBUILD_CORE_WITH_DX11_BACKEND=ON -DBUILD_CORE_WITH_VULKAN_BACKEND=ON -DBUILD_CORE_WITH_OPENGL3_BACKEND=ON -DBUILD_CORE_WITH_OPENGL2_BACKEND=ON",
+ "buildCommandArgs": "",
+ "ctestCommandArgs": ""
+ }
+ ]
+}
\ No newline at end of file |