Skip to content

Commit

Permalink
pixi: Move activation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Nov 6, 2024
1 parent 768f453 commit c3060d6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
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
Expand Up @@ -24,10 +24,10 @@ python = ">=3.9.0"
scipy = ">=1.10.0"

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

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

[tasks]
# We must avoid to set CMAKE_CXX_FLAGS because of WIN32
Expand Down Expand Up @@ -102,14 +102,14 @@ python = "3.9.*"
# to avoid cxx-compiler to overwrite them.
[feature.clang-cl]
platforms = ["win-64"]
activation = { scripts = ["build_scripts/pixi/activation_clang_cl.bat"] }
activation = { scripts = ["development/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 = ["build_scripts/pixi/activation_clang.sh"] }
activation = { scripts = ["development/scripts//pixi/activation_clang.sh"] }
dependencies = { clangxx = "*" }

[environments]
Expand Down

0 comments on commit c3060d6

Please sign in to comment.