Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pixi support #2459

Merged
merged 13 commits into from
Oct 28, 2024
Prev Previous commit
Next Next commit
pixi: Move all scripts inside build_scripts/pixi/
  • Loading branch information
jorisv committed Oct 25, 2024
commit 9bd21b6c17e42cd23b09da556821a932f95a5d37
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -26,10 +26,10 @@ meshcat-python = ">=0.3"
matplotlib = ">=3.9.2"

[activation]
scripts = ["scripts/activation.sh"]
scripts = ["build_scripts/pixi/activation.sh"]

[target.win-64.activation]
scripts = ["scripts/activation.bat"]
scripts = ["build_scripts/pixi/activation.bat"]

[tasks]
# We must avoid to set CMAKE_CXX_FLAGS because of WIN32
@@ -125,14 +125,14 @@ python = "3.9.*"
# to avoid cxx-compiler to overwrite them.
[feature.clang-cl]
platforms = ["win-64"]
activation = { scripts = ["scripts/activation_clang_cl.bat"] }
activation = { scripts = ["build_scripts/pixi/activation_clang_cl.bat"] }

# Use clang on GNU/Linux.
# We must use scripts instead of env to setup CC and CXX
# to avoid cxx-compiler to overwrite them.
[feature.clang]
platforms = ["linux-64"]
activation = { scripts = ["scripts/activation_clang.sh"] }
activation = { scripts = ["build_scripts/pixi/activation_clang.sh"] }
dependencies = { clangxx = "*" }

[environments]
Loading