Function
GameLib
(lib_name: str, extra_cflags: List[str], objects: List[Object])
Source from the content-addressed store, hash-verified
| 343 | |
| 344 | # Helper function for Game libraries |
| 345 | def GameLib(lib_name: str, extra_cflags: List[str], objects: List[Object]) -> Dict[str, Any]: |
| 346 | return { |
| 347 | "lib": lib_name, |
| 348 | "mw_version": "GC/2.6", |
| 349 | "cflags": cflags_game + extra_cflags, |
| 350 | "progress_category": "game", |
| 351 | "host": True, |
| 352 | "objects": objects, |
| 353 | } |
| 354 | |
| 355 | |
| 356 | Matching = True # Object matches and should be linked |
Tested by
no test coverage detected