Here is the gist of the problem:
# packages/tests/pixi.toml
[package]
build = {
backend.name = "pixi-build-cmake",
source.path = "../..",
}
# pixi.toml
[dependencies]
xsf.path = "packages/tests"
Running pixi install in the root workspace yields the following build error:
CMake Error: The source directory "$PIXI_WORKSPACE_ROOT/packages/tests" does not appear to contain CMakeLists.txt.
The source directory is incorrectly set, it should be $PIXI_WORKSPACE_ROOT/packages/tests/../...
Here is the gist of the problem:
Running
pixi installin the root workspace yields the following build error:The source directory is incorrectly set, it should be
$PIXI_WORKSPACE_ROOT/packages/tests/../...