I have a library project that contains some samples in a subfolder.
The library itself has a SConstruct
file and each sample has its own folder and its own SConstruct
file.
I'd like to add a target to the main (root) SConstruct
file which would allow me to compile the library as usual, and all the samples, at once.
Is there an existing mechanism/builder for this ?
P.S: I don't want to have only one big SConstruct
file because I want the samples folders to remain independant.