OLD | NEW |
| (Empty) |
1 #! -*- python -*- | |
2 # | |
3 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 """ | |
8 Build file for the NaCl SDK Experimental | |
9 | |
10 This file runs all the scons files in the various experimental sub-directories. | |
11 Do not invoke this script directly, but instead use the scons or scons.bat | |
12 wrapper function. E.g. | |
13 | |
14 Linux or Mac: | |
15 ./scons [Options...] | |
16 | |
17 Windows: | |
18 scons.bat [Options...] | |
19 """ | |
20 | |
21 #------------------------------------------------------------------------------ | |
22 HELP_STRING = """ | |
23 =============================================================================== | |
24 Help for NaCl SDK Experimental | |
25 =============================================================================== | |
26 | |
27 * cleaning: ./scons -c | |
28 * build a target: ./scons <target> | |
29 * clean a target: ./scons -c <target> | |
30 | |
31 Supported targets: | |
32 * webgtt Build the webgtt example. | |
33 """ | |
34 | |
35 experimental_sconscripts = ['webgtt/build.scons', | |
36 ] | |
37 | |
38 Help(HELP_STRING) | |
39 | |
40 SConscript(experimental_sconscripts) | |
OLD | NEW |