()
| 19 | |
| 20 | |
| 21 | def get_cmake_cmd(): |
| 22 | for cmd in CommonConfig.CMAKE_BINS: |
| 23 | if not os.system(f'{cmd} --version > /dev/null 2>&1'): |
| 24 | return cmd |
| 25 | raise Exception(f'Cannot find cmake cmd, try: {CommonConfig.CMAKE_BINS}') |
| 26 | |
| 27 | |
| 28 | def log_with_stars(string): |