3 # SPDX-License-Identifier: MIT
5 # Copyright The SCons Foundation
7 # Searches through the whole doc/user tree and creates
8 # all output files for the single examples.
14 if __name__
== "__main__":
15 print("Checking whether all example names are unique...")
16 if SConsExamples
.exampleNamesAreUnique(os
.path
.join('doc', 'user')):
20 "Not all example names and suffixes are unique! "
21 "Please correct the errors listed above and try again."
25 SConsExamples
.createAllExampleOutputs(os
.path
.join('doc', 'user'))