forked from BehaviorTree/BehaviorTree.CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixi.toml
32 lines (25 loc) · 791 Bytes
/
pixi.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[project]
name = "BehaviorTree.CPP"
version = "4.5.2"
description = "This C++ 17 library provides a framework to create BehaviorTrees"
authors = ["Tony Paulussen <[email protected]>"]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64"]
[target.win-64.tasks]
test = "PATH=\"$PATH;build/Release\" build/tests/Release/behaviortree_cpp_test.exe"
[target.linux-64.tasks]
test = "./build/tests/behaviortree_cpp_test"
[tasks]
build = "mkdir -p build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && cmake --build . --parallel --config Release"
[dependencies]
cmake = ">=3.16.3"
gmock = "1.12.*"
sqlite = "3.40.*"
zeromq = "4.3.*"
gtest = "1.12.*"
pre-commit = "*"
[target.win-64.dependencies]
vs2022_win-64 = "19.*"
[target.linux-64.dependencies]
gxx = "13.*"
make = "*"