Skip to content

Commit

Permalink
avoid deleting fPIC twice
Browse files Browse the repository at this point in the history
  • Loading branch information
toge committed May 23, 2024
1 parent 1a950c9 commit 1d36f12
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recipes/quill/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,16 @@ def _compilers_minimum_versions(self):
}

def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
if Version(self.version) >= "4.0.0":
del self.options.fPIC
del self.options.with_bounded_queue
del self.options.with_no_exceptions
del self.options.with_x86_arch
del self.options.with_bounded_blocking_queue
self.package_type = "header-library"
else:
if self.settings.os == "Windows":
del self.options.fPIC

def configure(self):
if Version(self.version) < "2.8.0":
Expand Down

0 comments on commit 1d36f12

Please sign in to comment.