()
| 26 | |
| 27 | |
| 28 | def parse_args(): |
| 29 | parser = argparse.ArgumentParser(description='Build thrust_shell') |
| 30 | parser.add_argument('-c', '--configuration', |
| 31 | help='Build with Release or Debug configuration', |
| 32 | nargs='+', |
| 33 | default=CONFIGURATIONS, |
| 34 | required=False) |
| 35 | parser.add_argument('-t', '--target', |
| 36 | help='Build specified target', |
| 37 | default='thrust_shell', |
| 38 | required=False) |
| 39 | return parser.parse_args() |
| 40 | |
| 41 | |
| 42 | if __name__ == '__main__': |