(self)
| 33 | self.options["grpc/*"].ruby_plugin = False |
| 34 | |
| 35 | def requirements(self): |
| 36 | if self.options.with_tests: |
| 37 | self.requires("trompeloeil/48") |
| 38 | self.requires("doctest/2.4.11") |
| 39 | |
| 40 | if self.options.with_benchmarks: |
| 41 | self.requires("nanobench/4.3.11") |
| 42 | |
| 43 | # if self.options.with_sfml: |
| 44 | # self.requires("sfml/2.6.2", options={"audio": False}) |
| 45 | |
| 46 | if self.options.with_grpc: |
| 47 | self.requires("grpc/1.65.0", transitive_libs=True, transitive_headers=True) |
| 48 | self.requires("libmount/2.39", override=True) |
| 49 | |
| 50 | if self.options.with_asio: |
| 51 | self.requires("asio/1.30.2") |
| 52 | |
| 53 | if self.options.with_cmake: |
| 54 | self.tool_requires("cmake/3.29.3") |
nothing calls this directly
no outgoing calls
no test coverage detected