(option)
| 440 | return building |
| 441 | |
| 442 | def AddDepend(option): |
| 443 | if isinstance(option, str): |
| 444 | BuildOptions[option] = 1 |
| 445 | elif isinstance(option, list): |
| 446 | for obj in option: |
| 447 | if isinstance(obj, str): |
| 448 | BuildOptions[obj] = 1 |
| 449 | else: |
| 450 | print('AddDepend arguements are illegal!') |
| 451 | else: |
| 452 | print('AddDepend arguements are illegal!') |
| 453 | |
| 454 | def Preprocessing(input, suffix, output = None, CPPPATH = None): |
| 455 | if hasattr(rtconfig, "CPP") and hasattr(rtconfig, "CPPFLAGS"): |