mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
a24ec53df2
This patch enables usage of Conan for cross-compiling Windows builds instead of MXE.
13 lines
274 B
Django/Jinja
13 lines
274 B
Django/Jinja
{% import 'base/cross-macro.j2' as cross -%}
|
|
include(base/cross-windows)
|
|
{% set target_host="x86_64-w64-mingw32" %}
|
|
|
|
[settings]
|
|
arch=x86_64
|
|
|
|
[conf]
|
|
{{ cross.generate_conf(target_host)}}
|
|
|
|
[env]
|
|
{{ cross.generate_env(target_host) }}
|
|
{{ cross.generate_env_win32(target_host) }} |