File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,20 @@ compiler.runtime=static
1717{% else %}
1818compiler.libcxx={{detect_api.detect_libcxx(compiler, version, compiler_exe)}}
1919{% endif %}
20+
21+ [conf]
22+ {% if compiler == "clang" and compiler_version >= 19 %}
23+ tools.build:cxxflags=['-Wno-missing-template-arg-list-after-template-kw']
24+ {% endif %}
25+ {% if compiler == "apple-clang" and compiler_version >= 17 %}
26+ tools.build:cxxflags=['-Wno-missing-template-arg-list-after-template-kw']
27+ {% endif %}
28+ {% if compiler == "clang" and compiler_version == 16 %}
29+ tools.build:cxxflags=['-DBOOST_ASIO_DISABLE_CONCEPTS']
30+ {% endif %}
31+ {% if compiler == "gcc" and compiler_version < 13 %}
32+ tools.build:cxxflags=['-Wno-restrict']
33+ {% endif %}
34+
35+ [tool_requires]
36+ !cmake/*: cmake/[>=3 <4]
You can’t perform that action at this time.
0 commit comments