From 29de059e1912d82b3ccc1918ad051fbdac913431 Mon Sep 17 00:00:00 2001 From: dev0 Date: Fri, 26 Dec 2025 02:56:34 +0530 Subject: [PATCH] [BUILDSYS]: Update Preset Display Names --- .github/workflows/ci.yaml | 7 ++----- CMakePresets.json | 10 +++++----- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index be52194..55ad957 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,11 +21,8 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Update Vcpkg Repo - run: | - cd /opt/vcpkg - git fetch --all - git pull origin master + - name: Install OpenSSL v3 (System) + run: sudo apt-get update && sudo apt-get install -y libssl-dev - name: Configure run: cmake --preset ${{ matrix.target }} diff --git a/CMakePresets.json b/CMakePresets.json index b6f69a7..ab3a685 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -18,19 +18,19 @@ }, { "name": "x64-linux", - "displayName": "Linux x64 (Clang)", + "displayName": "IACore Linux x64 (Clang)", "inherits": "iacore-base", "cacheVariables": {} }, { "name": "arm64-linux", - "displayName": "Linux ARM64 (Clang Cross)", + "displayName": "IACore Linux ARM64 (Clang Cross)", "inherits": "iacore-base", "cacheVariables": {} }, { "name": "x64-windows", - "displayName": "Windows x64 (Clang)", + "displayName": "IACore Windows x64 (Clang)", "inherits": "iacore-base", "cacheVariables": { "CMAKE_C_COMPILER": "clang-cl", @@ -39,7 +39,7 @@ }, { "name": "arm64-windows", - "displayName": "Windows ARM64 (Clang Cross)", + "displayName": "IACore Windows ARM64 (Clang Cross)", "inherits": "iacore-base", "cacheVariables": { "CMAKE_C_COMPILER": "clang-cl", @@ -48,7 +48,7 @@ }, { "name": "wasm", - "displayName": "WebAssembly (Clang)", + "displayName": "IACore WebAssembly (Clang)", "inherits": "iacore-base", "cacheVariables": {} }