-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpixi.toml
More file actions
48 lines (39 loc) · 1002 Bytes
/
pixi.toml
File metadata and controls
48 lines (39 loc) · 1002 Bytes
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
[project]
name = "lp"
version = "0.1.0"
description = "Add a short description here"
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64", "win-64", "osx-64"]
[feature.host.tasks]
build_0 = "sh build0.sh"
start = { cmd = "build/src/bin/lpython -I build/src/runtime" }
clean = "rm -rf ./inst && rm -rf ./build"
[feature.host.dependencies]
git = "*"
pip = "*"
re2c = "*"
toml = "*"
zlib = "*"
numpy = "*"
flake8 = "*"
setuptools = "*"
python = "3.10.2.*"
llvmdev = "11.0.1.*"
zstd-static = "1.5.5.*"
[feature.host.target.unix.dependencies]
bison = "3.4.*"
[feature.host.target.win.dependencies]
m2-bison = "3.0.4"
[feature.compiler.dependencies]
cxx-compiler = "*"
cmake = "*"
ninja = "*"
python = "3.10.2.*"
[feature.compiler.tasks]
build_1 = { cmd = "sh build1.sh" }
build = { depends-on = ["build_0", "build_1"] }
test = { cmd = "python ./integration_tests/run_tests.py"}
[environments]
compiler = ["compiler"]
host = ["host"]