From 7bcc4795c0f826883a148f8dad94318402c3c6ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Wed, 10 Jul 2024 19:56:26 +0200 Subject: [PATCH] Absolute path for UI Base in Github action. --- .github/workflows/build-and-test.yml | 2 +- vcpkg-configuration.json | 2 +- vcpkg.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 1c3b3bb..9db75c9 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -55,7 +55,7 @@ jobs: shell: pwsh run: | cmake --preset vs2022-windows ` - "-DCMAKE_PREFIX_PATH=${env:QT_ROOT_DIR}\msvc2019_64;.\uibase\install\lib\cmake" ` + "-DCMAKE_PREFIX_PATH=${env:QT_ROOT_DIR}\msvc2019_64;{{ github.workspace }}\uibase\install\lib\cmake" ` -DPLUGIN_PYTHON_TESTING=ON - name: Build Plugin Python diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json index 1afe86d..3efa5db 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -15,7 +15,7 @@ "kind": "git", "repository": "https://github.com/ModOrganizer2/vcpkg-registry", "baseline": "456d80419c7193bcf851d4c8b2075e0a2761053f", - "packages": ["mo2-cmake", "pybind11"] + "packages": ["mo2-*", "pybind11", "spdlog"] } ] } diff --git a/vcpkg.json b/vcpkg.json index 350725c..233fbe8 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -2,7 +2,7 @@ "dependencies": ["mo2-cmake", "pybind11"], "features": { "testing": { - "description": "Build UI Base tests.", + "description": "Build Plugin Python tests.", "dependencies": ["gtest"] } }