Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 1 | --- |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 2 | layout: documentation |
| 3 | title: Getting Started |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 4 | --- |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 5 | |
| 6 | # Getting Started with Bazel |
| 7 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 8 | This page lists material that will help you get started with Bazel. If you have |
| 9 | not already done so, first read the [Bazel Overview](bazel-overview.html). |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 10 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 11 | ## Installation |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 12 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 13 | To install Bazel, see [Installing Bazel](install.html). |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 14 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 15 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 16 | ## Tutorials |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 17 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 18 | To get hands-on with Bazel and understand its core concepts, complete a |
| 19 | tutorial: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 20 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 21 | * [Tutorial: Build a C++ Project](tutorial/cpp.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 22 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 23 | * [Tutorial: Build a Java Project](tutorial/java.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 24 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 25 | * [Tutorial: Build an Android Application](tutorial/android-app.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 26 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 27 | * [Tutorial: Build an iOS Application](tutorial/ios-app.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 28 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 29 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 30 | ## Migration |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 31 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 32 | To learn how to migrate your project to Bazel, see the appropriate migration |
| 33 | guide: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 34 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 35 | * [Migrating from Maven to Bazel](migrate-maven.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 36 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 37 | * [Migrating from Xcode to Bazel](migrate-xcode.html) |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 38 | |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 39 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 40 | ## Language-specific resources |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 41 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 42 | Once you are familiar with Bazel, take a look at the language-specific |
| 43 | resources, such as functions and build rules: |
dzc | 22b85a2 | 2017-05-31 20:37:50 +0200 | [diff] [blame] | 44 | |
spomorski | a6ee57a | 2017-10-24 21:06:01 +0200 | [diff] [blame] | 45 | * [C++ and Bazel](bazel-and-cpp.html) |
| 46 | |
| 47 | * [Java and Bazel](bazel-and-java.html) |
| 48 | |
| 49 | * [Android and Bazel](bazel-and-android.html) |
| 50 | |
| 51 | * [Apple apps and Bazel](bazel-and-apple.html) |
| 52 | |
| 53 | |
| 54 | ## Reference |
| 55 | |
| 56 | To further explore Bazel, refer to the following resources: |
| 57 | |
| 58 | * [Bazel Concepts and Terminology](build-ref.html) |
| 59 | |
| 60 | * [Bazel User Manual](user-manual.html) |
| 61 | |
| 62 | * [Build Encyclopedia](https://docs.bazel.build/versions/master/be/overview.html) |