-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pixi: Cleanup handling of dependencies built from source
- Loading branch information
1 parent
9f21e03
commit 37bbb18
Showing
6 changed files
with
1,286 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
repositories: | ||
YARP: | ||
type: git | ||
url: https://github.com/robotology/yarp.git | ||
version: e3ec363c0af7469fcb2c218c356844b8d6bbb1c5 | ||
ICUB: | ||
type: git | ||
url: https://github.com/robotology/icub-main.git | ||
version: v2.5.0 | ||
ergocub-software: | ||
type: git | ||
url: https://github.com/icub-tech-iit/ergocub-software.git | ||
version: v0.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"names": | ||
{ | ||
"YARP" : | ||
{ | ||
"cmake-args": [ | ||
"-DYARP_COMPILE_ALL_FAKE_DEVICES:BOOL=ON", | ||
"-DYARP_COMPILE_GUIS=OFF" | ||
] | ||
}, | ||
"ICUB" : | ||
{ | ||
"cmake-args": [ | ||
"-DBUILD_SHARED_LIBS=ON", | ||
"-DICUBMAIN_COMPILE_CORE=OFF", | ||
"-DICUBMAIN_COMPILE_TOOLS=OFF", | ||
"-DICUBMAIN_COMPILE_MODULES=OFF" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
set CMAKE_INSTALL_PREFIX=%CONDA_PREFIX%\Library | ||
set CMAKE_PREFIX_PATH=%CMAKE_INSTALL_PREFIX%;%CMAKE_PREFIX_PATH% | ||
set YARP_DATA_DIRS=%CMAKE_INSTALL_PREFIX%\share\yarp;%CMAKE_INSTALL_PREFIX%\share\ergoCub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export CMAKE_INSTALL_PREFIX=$CONDA_PREFIX | ||
export CMAKE_PREFIX_PATH=$CMAKE_INSTALL_PREFIX:$CMAKE_PREFIX_PATH | ||
export PYTHONPATH= | ||
export YARP_DATA_DIRS=$CMAKE_INSTALL_PREFIX/share/yarp:$CMAKE_INSTALL_PREFIX/share/ergoCub |