mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove `include(default)` from `conan/profiles/libxrpl`. This means that we will now rely on compiler workarounds stored elsewhere e.g. in global.conf.
20 lines
588 B
Plaintext
20 lines
588 B
Plaintext
{% set os = detect_api.detect_os() %}
|
|
{% set arch = detect_api.detect_arch() %}
|
|
{% set compiler, version, compiler_exe = detect_api.detect_default_compiler() %}
|
|
{% set compiler_version = version %}
|
|
{% if os == "Linux" %}
|
|
{% set compiler_version = detect_api.default_compiler_version(compiler, version) %}
|
|
{% endif %}
|
|
|
|
[settings]
|
|
os={{ os }}
|
|
arch={{ arch }}
|
|
compiler={{compiler}}
|
|
compiler.version={{ compiler_version }}
|
|
compiler.cppstd=20
|
|
{% if os == "Windows" %}
|
|
compiler.runtime=static
|
|
{% else %}
|
|
compiler.libcxx={{detect_api.detect_libcxx(compiler, version, compiler_exe)}}
|
|
{% endif %}
|