MCPcopy Create free account
hub / github.com/cztomczak/cefpython / clean_build_directories_if_forced

Function clean_build_directories_if_forced

tools/build_cpp_projects.py:88–95  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

86
87
88def 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
98def print_compiler_options():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected