-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
51 lines (48 loc) · 1.17 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "ekf_mono_slam"
version = "0.1.0"
description = "Visual Mono SLAM with 1-Point RANSAC EKF"
authors = ["Alvaro J. Gaona <alvgaona@gmail.com>"]
channels = ["conda-forge", "robostack-staging"]
platforms = ["linux-64"]
[tasks]
app = { cmd = ["ros2", "launch", "ekf_mono_slam", "vslam.launch.py"] }
build = { cmd = [
"colcon",
"build",
"--symlink-install",
"--event-handler",
"console_direct+",
"--cmake-args",
"-G Ninja",
"-DPython3_EXECUTABLE=$CONDA_PREFIX/bin/python",
] }
test = { cmd = [
"colcon",
"test",
"--ctest-args",
"tests",
"ekf_mono_slam",
"&&",
"./build/ekf_mono_slam/slam_test",
], depends-on = [
"build",
] }
clean = "rm -rf build install log"
clean-build = { depends_on = ["clean", "build"] }
[dependencies]
ros-humble-desktop = ">=0.10.0,<0.11"
colcon-common-extensions = ">=0.3.0,<0.4"
ninja = ">=1.12.0,<1.13"
cmake = ">=3.28.3,<3.29"
pkg-config = ">=0.29.2,<0.30"
ros-humble-ament-cmake-auto = ">=1.3.7,<1.4"
clang-format = ">=18.1.3,<18.2"
librerun-sdk = ">=0.20.1,<0.21"
gtest = ">=1.14.0,<2"
gmock = ">=1.14.0,<2"
eigen = ">=3.4.0,<4"
opencv = ">=4.9.0,<5"
cxx-compiler = ">=1.8.0,<2"
[activation]
scripts = ["install/setup.sh"]