[CONAN] clear the tools.build:cxxflags

This commit is contained in:
Nicholas Dudfield
2025-03-24 16:54:12 +07:00
parent d37039897e
commit 42a44d0cb8

View File

@@ -55,8 +55,9 @@ jobs:
run : |
conan profile new default --detect || true
conan profile update settings.compiler.cppstd=20 default
conan profile show default # Check what profile is being used
conan profile update tools.build:cxxflags=[] default # Reset cxxflags in default profile
conan profile show default # Check before
conan profile update 'conf.tools.build:cxxflags=[]' default # Reset cxxflags in default profile
conan profile show default # Check after
# TODO: CONAN
# conan profile update 'conf.tools.build:cxxflags+=["-DBOOST_ASIO_DISABLE_CONCEPTS"]' default
conan remove boost/1.86.0 --force