File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -64,19 +64,19 @@ Compiling with [conan](https://conan.io/):
64
64
Assuming that you are in the ** parent** directory of ` BehaviorTree.CPP ` :
65
65
66
66
```
67
- mkdir build; cd build
68
- conan install ../BehaviorTree.CPP --output-folder=. --build=missing
69
- cmake ../BehaviorTree.CPP - DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
70
- cmake --build . --parallel
67
+ mkdir build_release
68
+ conan install . -of build_release -s build_type=Release
69
+ cmake -S . -B build_release - DCMAKE_TOOLCHAIN_FILE="build_release/ conan_toolchain.cmake"
70
+ cmake --build build_release --parallel
71
71
```
72
72
73
73
If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to
74
74
use conan, simply type:
75
75
76
76
```
77
- mkdir build; cd build
78
- cmake ../BehaviorTree.CPP
79
- cmake --build . --parallel
77
+ mkdir build_release
78
+ cmake -S . -B build_release
79
+ cmake --build build_release --parallel
80
80
```
81
81
82
82
If you want to build in a [ pixi] ( https://pixi.sh/ ) project (conda virtual environment).
You can’t perform that action at this time.
0 commit comments