-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
36 lines (33 loc) · 1.09 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
[project]
authors = ["Adel Mamin <adel@mm.st>"]
channels = ["conda-forge"]
description = "Add a short description here"
name = "amast"
platforms = ["linux-64"]
version = "0.1.0"
[tasks]
setup_posix = "meson setup builds/posix -Dunit_test=true -Dpal=posix"
style_posix = "meson compile -C builds/posix style"
cspell = "meson compile -C builds/posix cspell"
cppcheck_posix = "meson compile -C builds/posix cppcheck"
tidy_posix = "meson compile -C builds/posix tidy"
test_posix = "meson test -C builds/posix"
libs_posix = "meson compile -C builds/posix"
iwyu_posix = "meson compile -C builds/posix iwyu"
posix = { depends-on = ["setup_posix", "libs_posix", "style_posix", "cspell", "cppcheck_posix", "iwyu_posix", "test_posix"] }
all = { depends-on = ["posix"] }
[dependencies]
meson = ">=1.6.1,<2"
ninja = ">=1.12.1,<2"
gcc = ">=14.2.0,<14.3"
cppcheck = ">=2.16.0,<3"
clang = ">=19.1.7,<20"
make = ">=4.4.1,<5"
include-what-you-use = ">=0.23,<0.24"
cspell = ">=8.17.2,<9"
clang-tools = ">=19.1.7,<20"
binutils = ">=2.43,<3"
gdb = ">=15.1,<16"
ccache = ">=4.10.1,<5"
[pypi-dependencies]
setuptools-scm = ">=8.1.0, <9"