2024-05-21 12:45:43 +10:00
|
|
|
{% set toolchain = "/usr/x86_64-w64-mingw32" %}
|
|
|
|
{% set target_host = "x86_64-w64-mingw32" %}
|
|
|
|
{% set cc_compiler = "gcc" %}
|
|
|
|
{% set cxx_compiler = "g++" %}
|
2024-05-16 10:17:06 +10:00
|
|
|
|
|
|
|
[buildenv]
|
2024-05-21 12:45:43 +10:00
|
|
|
CONAN_CMAKE_FIND_ROOT_PATH={{toolchain}}
|
|
|
|
CONAN_CMAKE_SYSROOT={{toolchain}}
|
|
|
|
CHOST={{target_host}}
|
|
|
|
AR={{target_host}}-ar
|
|
|
|
AS={{target_host}}-as
|
|
|
|
RANLIB={{target_host}}-ranlib
|
|
|
|
CC={{target_host}}-{{cc_compiler}}
|
|
|
|
CXX={{target_host}}-{{cxx_compiler}}
|
|
|
|
STRIP={{target_host}}-strip
|
|
|
|
RC={{target_host}}-windres
|
2020-10-19 08:46:18 +11:00
|
|
|
|
|
|
|
[settings]
|
|
|
|
os=Windows
|
|
|
|
arch=x86_64
|
|
|
|
compiler=gcc
|
|
|
|
|
2023-11-19 10:41:05 +11:00
|
|
|
compiler.version=13.2
|
2020-10-19 08:46:18 +11:00
|
|
|
compiler.libcxx=libstdc++11
|
|
|
|
build_type=Release
|
2024-05-16 10:17:06 +10:00
|
|
|
|
|
|
|
[conf]
|
2024-05-21 12:45:43 +10:00
|
|
|
tools.build:compiler_executables={"c": "{{target_host}}-{{cc_compiler}}","cpp": "{{target_host}}-{{cxx_compiler}}","rc":"{{target_host}}-windres"}
|