From 42a44d0cb87366b958c44e80682ea26d212eb762 Mon Sep 17 00:00:00 2001 From: Nicholas Dudfield Date: Mon, 24 Mar 2025 16:54:12 +0700 Subject: [PATCH] [CONAN] clear the tools.build:cxxflags --- .github/workflows/macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2361409ef..43d68069a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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