You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/contributing/build.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,22 @@ To build the *DroneCore* C++ Library on Linux (or macOS after installing the [pr
27
27
```
28
28
> **Note** If the build reports a missing dependency, confirm that the set above matches the requirements in the [Dockerfile](https://github.com/dronecore/DroneCore/blob/master/Dockerfile).
29
29
30
-
1. Clone the [DroneCore repository](https://github.com/dronecore/DroneCore) (or your fork) and update the submodules:
30
+
1. Clone the [DroneCore repository](https://github.com/dronecore/DroneCore) (or your fork):
1. Checkout the release/branch you want to build (the `develop` branch is checked out by default).
36
+
* Latest stable build (`master`):
37
+
```
38
+
git checkout master
39
+
```
40
+
* Head revision with latest features (`develop`):
41
+
```
42
+
git checkout develop
43
+
```
44
+
1. Update the submodules:
45
+
```sh
34
46
git submodule update --init --recursive
35
47
```
36
48
1. Build the (debug) C++ library by calling:
@@ -61,10 +73,22 @@ To build the library in Windows, you need:
61
73
>**Note** The instructions below assume you downloaded [curl-7.56.1.zip](https://curl.haxx.se/download/curl-7.56.1.zip) and extracted to the root of your C drive. You can use a different *curl*if you want.
62
74
63
75
To build the *DroneCore* C++ Library on Windows:
64
-
1. Clone the DroneCore repository (or your fork) and update the submodules:
76
+
1. Clone the [DroneCore repository](https://github.com/dronecore/DroneCore) (or your fork):
0 commit comments