File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 8888 repository : InfinyTech3D/ConstraintGeometry
8989 path : deps/ConstraintGeometry
9090
91+ - name : Build and install ConstraintGeometry
92+ shell : bash
93+ run : |
94+ mkdir -p deps/ConstraintGeometry/build
95+ if [[ "$RUNNER_OS" == "Windows" ]]; then
96+ cmd //c "${{ steps.sofa.outputs.vs_vsdevcmd }} \
97+ && cd /d %GITHUB_WORKSPACE%/deps/ConstraintGeometry/build \
98+ && cmake \
99+ -GNinja \
100+ -DCMAKE_PREFIX_PATH=$SOFA_ROOT/lib/cmake;%GITHUB_WORKSPACE%/install/CollisionAlgorithm \
101+ -DCMAKE_BUILD_TYPE=Release \
102+ -DCMAKE_INSTALL_PREFIX=%GITHUB_WORKSPACE%/install/ConstraintGeometry \
103+ ../src \
104+ && ninja install"
105+ else
106+ cd deps/ConstraintGeometry/build
107+ cmake \
108+ -GNinja \
109+ -DCMAKE_PREFIX_PATH="$SOFA_ROOT/lib/cmake;$GITHUB_WORKSPACE/install/CollisionAlgorithm" \
110+ -DCMAKE_BUILD_TYPE=Release \
111+ -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install/ConstraintGeometry \
112+ ../src
113+ ninja install
114+ fi
115+
91116 - name : Set env vars for tests
92117 shell : bash
93118 run : |
You can’t perform that action at this time.
0 commit comments