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: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,13 @@ There are many options to build AdTree. Choose one of the following (or whatever
39
39
of AdTree. Then you should have obtained a usable project and just build. I recommend using
40
40
[CLion](https://www.jetbrains.com/clion/) or [QtCreator](https://www.qt.io/product).
41
41
- Option 2: Use CMake to generate project files for your IDE. Then load the project to your IDE and build.
42
-
- Option 3: Use CMake to generate Makefiles and then `make` (on Linux/macOS) or `nmake`(on Windows with Microsoft
43
-
Visual Studio).
44
-
42
+
- Option 3: Use CMake to generate Makefiles and then `make` (on Linux/macOS) or `nmake`(on Windows with Microsoft Visual Studio). For example, on Linux or macOS, you can simply
43
+
```
44
+
$ cd adtree
45
+
$ cmake .
46
+
$ make
47
+
```
48
+
45
49
Don't have any experience with C/C++ programming? Have a look at [How to build AdTree step by step](./How_to_build.md).
46
50
47
51
This demo version provides a user interface with menus. Just clicking on the menus will do all the magic :-)
0 commit comments