« Prev 4.3.3.4 The Disassemble Builder | Table of Contents | Next » 4.3.3.6 The InstallDirectory Builder |
env.Install(destination, sources) # Example env.Install("${prefix}/bin", "app.exe") env.Install("${prefix}/share", "share")
The Install
builder can install files or directories to their installation
target location.
It functions almost identically to the Copy
builder.
The only difference relates to the clean
and uninstall
tasks.
The clean
task removes targets created by the Copy
builder but not by
the Install
builder.
The uninstall
task removes targets created by the Install
builder but not
by the Copy
builder.
« Prev 4.3.3.4 The Disassemble Builder | Table of Contents | Next » 4.3.3.6 The InstallDirectory Builder |