Browse Source

create conan profile for MinGW

pull/1278/head
Silvio Kunaschk 6 years ago
parent
commit
f9998f37e1
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      azure-pipelines.yml

+ 12
- 2
azure-pipelines.yml View File

@@ -78,10 +78,20 @@ jobs:
conan remote add conan-community https://api.bintray.com/conan/conan-community/conan
conan remote add qno https://api.bintray.com/conan/qno/conan-public
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
conan profile new mingw
conan profile update settings.os=Windows mingw
conan profile update settings.os_build=Windows mingw
conan profile update settings.arch=x86_64 mingw
conan profile update settings.arch_build=x86_64 mingw
conan profile update settings.compiler=gcc mingw
conan profile update settings.compiler.version=8.1 mingw
conan profile update settings.compiler.exception=seh mingw
conan profile update settings.compiler.libcxx=libstdc++11 mingw
conan profile update settings.compiler.threads=posix mingw
conan profile update settings.build_type=Release mingw
mkdir build
cd build
conan profile list
conan install .. -s build_type=Release --profile msys2_mingw --build=missing
conan install .. -s build_type=Release --profile mingw --build=missing
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
displayName: build VCVRack


Loading…
Cancel
Save