(self)
| 34 | generators = "CMakeToolchain" |
| 35 | |
| 36 | def configure(self): |
| 37 | if self.options.system_context: |
| 38 | self.options.parallel_scheduler = True |
| 39 | if self.options.parallel_scheduler: |
| 40 | self.package_type = "static-library" |
| 41 | else: |
| 42 | self.package_type = "header-library" |
| 43 | |
| 44 | def validate(self): |
| 45 | check_min_cppstd(self, "20") |