Skip to content

Commit

Permalink
apply feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
basiliscos committed Jan 18, 2023
1 parent 754a5a7 commit 6ff1256
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/rotor/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ def layout(self):

def generate(self):
tc = CMakeToolchain(self)
tc.cache_variables["BUILD_BOOST_ASIO"] = self.options.enable_asio
tc.cache_variables["BUILD_THREAD"] = self.options.enable_thread
tc.cache_variables["BUILD_THREAD_UNSAFE"] = not self.options.multithreading
tc.cache_variables["BUILD_TESTING"] = False
tc.variables["BUILD_BOOST_ASIO"] = self.options.enable_asio
tc.variables["BUILD_THREAD"] = self.options.enable_thread
tc.variables["BUILD_THREAD_UNSAFE"] = not self.options.multithreading
tc.variables["BUILD_TESTING"] = False
tc.generate()
tc = CMakeDeps(self)
tc.generate()
Expand Down

0 comments on commit 6ff1256

Please sign in to comment.