I want scons to always install the embedded file in several additional directories.
I created a regular installation constructor with an alias shown in the user guide, and it installs correctly when I use it scons install, but I prefer it to start automatically after creating the target, and I cannot figure out how to specify the dependencies.
Target = Program(...)
Env.Alias('install', Env.Install(FinalDir, Target))
If the goal is installation dependent or vice versa or should I use something else?
source
share