From 6474329afc3bf78785896989d80e15e77c229dd4 Mon Sep 17 00:00:00 2001 From: William Bell <62452284+Ugric@users.noreply.github.com> Date: Sat, 16 Aug 2025 02:08:56 +0100 Subject: [PATCH] switch to conan for windows --- .github/workflows/release.yml | 4 +--- mingw-profile.txt | 12 ++++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 mingw-profile.txt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 692095a..ed7fb60 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,8 +117,6 @@ jobs: base-devel mingw-w64-x86_64-gcc mingw-w64-x86_64-make - mingw-w64-x86_64-gmp - mingw-w64-x86_64-gc - name: Install Conan run: | @@ -128,7 +126,7 @@ jobs: - name: Build Project run: | - conan install . --build=missing + conan install . --profile mingw-profile.txt --build=missing conan build . - name: Package diff --git a/mingw-profile.txt b/mingw-profile.txt new file mode 100644 index 0000000..244598e --- /dev/null +++ b/mingw-profile.txt @@ -0,0 +1,12 @@ +[settings] +os=Windows +compiler=gcc +compiler.version=12 +compiler.libcxx=libstdc++11 +compiler.threads=posix +compiler.exception=seh +arch=x86_64 +build_type=Release + +[tool_requires] +mingw-builds/12.2.0 \ No newline at end of file