]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - .vscode/cmake-variants.json
cmake: Initial working implementation of cmake build system
[xonotic/darkplaces.git] / .vscode / cmake-variants.json
diff --git a/.vscode/cmake-variants.json b/.vscode/cmake-variants.json
new file mode 100644 (file)
index 0000000..d9eccc4
--- /dev/null
@@ -0,0 +1,28 @@
+{
+       "buildType": {
+               "default": "debug",
+               "description": "The build type.",
+               "choices": {
+                       "debug": {
+                               "short": "Debug",
+                               "long": "Disable optimizations - include debug information.",
+                               "buildType": "Debug"
+                       },
+                       "release": {
+                               "short": "Release",
+                               "long": "Optimize for speed - exclude debug information.",
+                               "buildType": "Release"
+                       },
+                       "profile": {
+                               "short": "Profile",
+                               "long": "Disable optimizations - include profiling information.",
+                               "buildType": "Profile"
+                       },
+                       "profrelease": {
+                               "short": "ProfileRelease",
+                               "long": "Optimize for speed - include profiling information.",
+                               "buildType": "ProfileRelease"
+                       }
+               }
+       }
+}