Skip to content

Commit

Permalink
Install eigen
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 27, 2024
1 parent bb0f2f9 commit 1057aee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/reusable-ros-tooling-win-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ jobs:
with:
python-version: '3.8'

# install more dependencies here, we can't use vcpkg because it overrides the python version
# and colcon fails later
- name: Install Eigen
run: |
wget https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.zip -O eigen-3.4.0.zip
Expand-Archive -Path eigen-3.4.0.zip -DestinationPath C:\Eigen
cd C:\Eigen
ls
cmake -B build -DCMAKE_INSTALL_PREFIX="C:\EigenInstall"
cmake --build build --target install
- name: Install fmt
run: |
git clone https://github.com/fmtlib/fmt.git
Expand Down

0 comments on commit 1057aee

Please sign in to comment.