this thing is really annoying me now

This commit is contained in:
William Bell
2025-08-15 21:34:31 +01:00
parent fc6f41d89b
commit 0d8f262185
2 changed files with 8 additions and 19 deletions

View File

@@ -117,17 +117,16 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install conan
conan profile detect
conan profile new default --detect
conan profile update settings.compiler.version=13 default
conan profile update settings.compiler=gcc default
conan profile update settings.os=Windows default
conan profile update env.CC=x86_64-w64-mingw32-gcc default
conan profile update env.CXX=x86_64-w64-mingw32-g++ default
- name: Build Windows with MinGW
run: |
conan install . \
-s os=Windows \
-s compiler=gcc \
-s compiler.version=13 \
-s compiler.libcxx=libstdc++11 \
-s arch=x86_64 \
--build=missing
conan install . --profile:host=default --profile:build=default --build=missing
conan build .
- name: Package Windows build