()
| 86 | |
| 87 | |
| 88 | def clean_build_directories_if_forced(): |
| 89 | build_dirs = [BUILD_CEFPYTHON_APP, BUILD_CLIENT_HANDLER, BUILD_CPP_UTILS, |
| 90 | BUILD_SUBPROCESS] |
| 91 | if FORCE_FLAG: |
| 92 | print("[build_cpp_projects.py] Clean C++ projects build directories") |
| 93 | for bdir in build_dirs: |
| 94 | if os.path.isdir(bdir): |
| 95 | shutil.rmtree(bdir) |
| 96 | |
| 97 | |
| 98 | def print_compiler_options(): |