Skip to content

Commit

Permalink
Remove C++ settings in configure() method
Browse files Browse the repository at this point in the history
  • Loading branch information
System-Arch authored Dec 11, 2022
1 parent 59e130a commit cb4c332
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipes/msys2/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ def validate(self):
if self.info.settings.arch != "x86_64":
raise ConanInvalidConfiguration("Only Windows x64 supported")

def configure(self):
self.settings.rm_safe("compiler.libcxx")
self.settings.rm_safe("compiler.cppstd")

def layout(self):
basic_layout(self, src_folder="src")

Expand Down

0 comments on commit cb4c332

Please sign in to comment.