()
| 511 | |
| 512 | |
| 513 | def clean_cpp_projects_unix(): |
| 514 | delete_files_by_pattern("{0}/*.o".format(CLIENT_HANDLER_DIR)) |
| 515 | delete_files_by_pattern("{0}/*.a".format(CLIENT_HANDLER_DIR)) |
| 516 | |
| 517 | delete_files_by_pattern("{0}/*.o".format(SUBPROCESS_DIR)) |
| 518 | delete_files_by_pattern("{0}/*.a".format(SUBPROCESS_DIR)) |
| 519 | delete_files_by_pattern("{0}/subprocess".format(SUBPROCESS_DIR)) |
| 520 | delete_files_by_pattern("{0}/main_message_loop/*.o".format(SUBPROCESS_DIR)) |
| 521 | |
| 522 | delete_files_by_pattern("{0}/*.o".format(CPP_UTILS_DIR)) |
| 523 | delete_files_by_pattern("{0}/*.a".format(CPP_UTILS_DIR)) |
| 524 | |
| 525 | |
| 526 | def compile_cpp_projects_unix(): |
no test coverage detected