From c5518cdd3f7333c0c90863e30d0240302a276f3e Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Tue, 17 Jan 2023 01:14:42 +0700 Subject: [PATCH] move triplets to cmake directory --- .github/workflows/win_msvc.yml | 2 +- {triplets-custom => cmake/triplets}/x64-windows.cmake | 0 {triplets-custom => cmake/triplets}/x86-windows.cmake | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {triplets-custom => cmake/triplets}/x64-windows.cmake (100%) rename {triplets-custom => cmake/triplets}/x86-windows.cmake (100%) diff --git a/.github/workflows/win_msvc.yml b/.github/workflows/win_msvc.yml index 9e1ccc87..8dd020c1 100644 --- a/.github/workflows/win_msvc.yml +++ b/.github/workflows/win_msvc.yml @@ -50,7 +50,7 @@ jobs: run: | cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_WERROR=ON ` -DCMAKE_TOOLCHAIN_FILE="${{ env.VCPKG_ROOT }}/scripts/buildsystems/vcpkg.cmake" ` - -DVCPKG_OVERLAY_TRIPLETS="triplets-custom" + -DVCPKG_OVERLAY_TRIPLETS="cmake/triplets" - name: Build run: cmake --build build diff --git a/triplets-custom/x64-windows.cmake b/cmake/triplets/x64-windows.cmake similarity index 100% rename from triplets-custom/x64-windows.cmake rename to cmake/triplets/x64-windows.cmake diff --git a/triplets-custom/x86-windows.cmake b/cmake/triplets/x86-windows.cmake similarity index 100% rename from triplets-custom/x86-windows.cmake rename to cmake/triplets/x86-windows.cmake