From 366cc46ecf8b848e045b529ab35456e2a530978f Mon Sep 17 00:00:00 2001 From: lukas Date: Fri, 9 Apr 2021 15:46:53 +0200 Subject: [PATCH] add a mingw profile --- Docker/Windows_Conan/build.sh | 4 +--- conanfile.txt | 1 - mingw64.profile | 3 ++- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Docker/Windows_Conan/build.sh b/Docker/Windows_Conan/build.sh index 6fae09a..b085994 100644 --- a/Docker/Windows_Conan/build.sh +++ b/Docker/Windows_Conan/build.sh @@ -13,10 +13,8 @@ git clone https://gitlab.heili.eu/lukas/dynuiprefresher.git cd dynuiprefresher || exit git checkout conansupport -conan profile new default --detect --force # Generates default profile detecting GCC and sets old ABI -conan profile update settings.compiler.libcxx=libstdc++11 default # Sets libcxx to C++11 ABI mkdir -p build # create build folder -CONAN_SYSREQUIRES_MODE=enabled CONAN_SYSREQUIRES_SUDO=0 conan install . --build=missing +CONAN_SYSREQUIRES_MODE=enabled CONAN_SYSREQUIRES_SUDO=0 conan install . --build=missing --profile mingw64.profile # cleanup diff --git a/conanfile.txt b/conanfile.txt index 438ac93..c2bdc5a 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,6 +1,5 @@ [requires] libcurl/7.72.0 -openssl/1.1.1i [generators] cmake diff --git a/mingw64.profile b/mingw64.profile index ac2eed9..5988e51 100644 --- a/mingw64.profile +++ b/mingw64.profile @@ -22,6 +22,7 @@ arch=x86_64 compiler=gcc # Adjust to the gcc version of your MinGW package -compiler.version=7.3 +compiler.version=10 compiler.libcxx=libstdc++11 +compiler.threads=posix build_type=Release \ No newline at end of file