[BUILDSYS]: Update Preset Display Names

This commit is contained in:
2025-12-26 02:56:34 +05:30
parent a11f0359e2
commit 29de059e19
2 changed files with 7 additions and 10 deletions

View File

@ -21,11 +21,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Update Vcpkg Repo - name: Install OpenSSL v3 (System)
run: | run: sudo apt-get update && sudo apt-get install -y libssl-dev
cd /opt/vcpkg
git fetch --all
git pull origin master
- name: Configure - name: Configure
run: cmake --preset ${{ matrix.target }} run: cmake --preset ${{ matrix.target }}

View File

@ -18,19 +18,19 @@
}, },
{ {
"name": "x64-linux", "name": "x64-linux",
"displayName": "Linux x64 (Clang)", "displayName": "IACore Linux x64 (Clang)",
"inherits": "iacore-base", "inherits": "iacore-base",
"cacheVariables": {} "cacheVariables": {}
}, },
{ {
"name": "arm64-linux", "name": "arm64-linux",
"displayName": "Linux ARM64 (Clang Cross)", "displayName": "IACore Linux ARM64 (Clang Cross)",
"inherits": "iacore-base", "inherits": "iacore-base",
"cacheVariables": {} "cacheVariables": {}
}, },
{ {
"name": "x64-windows", "name": "x64-windows",
"displayName": "Windows x64 (Clang)", "displayName": "IACore Windows x64 (Clang)",
"inherits": "iacore-base", "inherits": "iacore-base",
"cacheVariables": { "cacheVariables": {
"CMAKE_C_COMPILER": "clang-cl", "CMAKE_C_COMPILER": "clang-cl",
@ -39,7 +39,7 @@
}, },
{ {
"name": "arm64-windows", "name": "arm64-windows",
"displayName": "Windows ARM64 (Clang Cross)", "displayName": "IACore Windows ARM64 (Clang Cross)",
"inherits": "iacore-base", "inherits": "iacore-base",
"cacheVariables": { "cacheVariables": {
"CMAKE_C_COMPILER": "clang-cl", "CMAKE_C_COMPILER": "clang-cl",
@ -48,7 +48,7 @@
}, },
{ {
"name": "wasm", "name": "wasm",
"displayName": "WebAssembly (Clang)", "displayName": "IACore WebAssembly (Clang)",
"inherits": "iacore-base", "inherits": "iacore-base",
"cacheVariables": {} "cacheVariables": {}
} }