Function
JSystemLib
(lib_name: str, extra_cflags: List[str], objects: List[Object])
Source from the content-addressed store, hash-verified
| 330 | |
| 331 | # Helper function for JSystem libraries |
| 332 | def JSystemLib(lib_name: str, extra_cflags: List[str], objects: List[Object]) -> Dict[str, Any]: |
| 333 | return { |
| 334 | "lib": lib_name, |
| 335 | "src_dir": "libs", |
| 336 | "mw_version": "GC/2.6", |
| 337 | "cflags": cflags_jsystem + extra_cflags, |
| 338 | "progress_category": "jsys", |
| 339 | "host": True, |
| 340 | "objects": objects, |
| 341 | } |
| 342 | |
| 343 | |
| 344 | # Helper function for Game libraries |
Tested by
no test coverage detected