Viet-Trung Luu | a0bce06 | 2016-02-17 13:29:12 -0800 | [diff] [blame] | 1 | # Tools/scripts/data for building SDKs |
| 2 | |
| 3 | This directory contains (or will contain) tools, scripts, and data for building |
| 4 | SDKs (for various languages and platforms). |
Viet-Trung Luu | 400a69d | 2016-03-04 13:59:20 -0800 | [diff] [blame] | 5 | |
| 6 | ## build_sdk.py |
| 7 | |
| 8 | This is a script that creates a directory containing an "SDK" using the |
| 9 | instructions in a given "SDK specification file" and data from the current git |
| 10 | repository (which should be clean; for testing purposes, you may give the |
| 11 | `--allow-dirty-tree` flag). |
| 12 | |
| 13 | For example: |
| 14 | |
| 15 | $ ./build_sdk.py data/cpp/cpp.sdk /tmp/my_cpp_sdk |
| 16 | |
| 17 | This creates an SDK for C++ in `/tmp/my_cpp_sdk`. |
| 18 | |
| 19 | This script does not handle packaging such an SDK (e.g., into a tarball) or |
| 20 | uploading it (e.g., to Google Cloud Storage). |