MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / copy_app

Function copy_app

scripts/make_install_folder_dotnet.py:23–34  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21it.create_directories = create_directories
22
23def copy_app():
24 configs = ['Debug','Release'];
25 for config in configs:
26 path_to_objects = os.path.join(it.path_to_objects,config)
27 objFolder = os.walk(path_to_objects)
28 path_to_app = os.path.join(it.path_to_app,config)
29 for address, dirs, files in objFolder:
30 for file in files:
31 if ((file.endswith('.dll') and not any(map(file.startswith, excluded_modules)))):
32 src = os.path.join(address,file)
33 dst = os.path.join(path_to_app,file)
34 shutil.copyfile(src, dst)
35
36it.copy_app = copy_app
37

Callers

nothing calls this directly

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected