Skip to content

Commit

Permalink
workaround for conan-io/conan#3519
Browse files Browse the repository at this point in the history
  • Loading branch information
DoDoENT authored and lmglmg committed Jul 17, 2019
1 parent afefaad commit 704f127
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ class EigenConan(ConanFile):


def config_options(self):
self.options.default_number_of_registers = self.calc_default_number_of_registers()
self.options.apple_accelerate_mode = self.calc_apple_accelerate_mode()
if self.options.default_number_of_registers == None:
self.options.default_number_of_registers = self.calc_default_number_of_registers()
if self.options.apple_accelerate_mode == None:
self.options.apple_accelerate_mode = self.calc_apple_accelerate_mode()


def calc_default_number_of_registers(self):
Expand Down

0 comments on commit 704f127

Please sign in to comment.