mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
21 lines
706 B
Django/Jinja
21 lines
706 B
Django/Jinja
{% macro generate_env(target_host) -%}
|
|
CONAN_CROSS_COMPILE={{ target_host }}-
|
|
CHOST={{ target_host }}
|
|
AR={{ target_host }}-ar
|
|
AS={{ target_host }}-as
|
|
CC={{ target_host }}-gcc
|
|
CXX={{ target_host }}-g++
|
|
RANLIB={{ target_host }}-ranlib
|
|
STRIP={{ target_host }}-strip
|
|
{%- endmacro -%}
|
|
|
|
{% macro generate_env_win32(target_host) -%}
|
|
CONAN_SYSTEM_LIBRARY_LOCATION=/usr/lib/gcc/{{ target_host }}/10-posix/
|
|
RC={{ target_host }}-windres
|
|
{%- endmacro -%}
|
|
|
|
{% macro generate_conf(target_host) -%}
|
|
tools.build:compiler_executables = {"c": "{{ target_host }}-gcc", "cpp": "{{ target_host }}-g++"}
|
|
tools.build:sysroot = /usr/{{ target_host }}
|
|
tools.build:defines = ["WINVER=0x0601", "_WIN32_WINNT=0x0601"]
|
|
{%- endmacro -%} |