()
| 63 | |
| 64 | |
| 65 | def main(): |
| 66 | command_line_args() |
| 67 | clean_build_directories_if_forced() |
| 68 | print_compiler_options() |
| 69 | build_cefpython_app_library() |
| 70 | build_library(lib_name="client_handler", |
| 71 | macros=MACROS, |
| 72 | sources_dir=CLIENT_HANDLER_DIR, |
| 73 | output_dir=BUILD_CLIENT_HANDLER) |
| 74 | build_library(lib_name="cpp_utils", |
| 75 | macros=MACROS, |
| 76 | sources_dir=CPP_UTILS_DIR, |
| 77 | output_dir=BUILD_CPP_UTILS) |
| 78 | build_subprocess_executable() |
| 79 | print("[build_cpp_projects.py] Done building C++ projects") |
| 80 | |
| 81 | |
| 82 | def command_line_args(): |
no test coverage detected