Bladeren bron

CMake: Ensure build and test presets for Distribution and Debug

Andrew Kaster 2 maanden geleden
bovenliggende
commit
13338a9532
2 gewijzigde bestanden met toevoegingen van 26 en 0 verwijderingen
  1. 23 0
      CMakePresets.json
  2. 3 0
      Meta/shell_include.sh

+ 23 - 0
CMakePresets.json

@@ -211,6 +211,24 @@
         "all"
       ]
     },
+    {
+      "name": "Distribution",
+      "configurePreset": "Distribution",
+      "displayName": "Build",
+      "description": "Build the project for distribution",
+      "targets": [
+        "all"
+      ]
+    },
+    {
+      "name": "Debug",
+      "configurePreset": "Debug",
+      "displayName": "Build",
+      "description": "Build the project in debug",
+      "targets": [
+          "all"
+      ]
+    },
     {
       "name": "Sanitizer",
       "configurePreset": "Sanitizer",
@@ -249,6 +267,11 @@
       "name": "Debug",
       "inherits": "default",
       "configurePreset": "Debug"
+    },
+    {
+      "name": "Distribution",
+      "inherits": "default",
+      "configurePreset": "Distribution"
     }
   ]
 }

+ 3 - 0
Meta/shell_include.sh

@@ -75,6 +75,9 @@ get_build_dir() {
         "Sanitizer")
             BUILD_DIR="${LADYBIRD_SOURCE_DIR}/Build/sanitizers"
             ;;
+        "Distribution")
+            BUILD_DIR="${LADYBIRD_SOURCE_DIR}/Build/distribution"
+            ;;
         *)
             echo "Unknown BUILD_PRESET: '$1'" >&2
             exit 1