Skip to content

Commit

Permalink
:spagetti: flinging
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 3, 2024
1 parent 146e1f8 commit 98091b3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,22 @@ jobs:
if [ "$RUNNER_OS" == "Windows" ]; then
export CC=cl.exe
export CXX=cl.exe
export ENTWINE_LIBRARY_PATH=$CONDA_PREFIX/Library/lib
export ENTWINE_INCLUDE_PATH=$CONDA_PREFIX/Library/include
else
export ENTWINE_LIBRARY_PATH=$CONDA_PREFIX/lib
export ENTWINE_INCLUDE_PATH=$CONDA_PREFIX/include
fi
cmake -G "Ninja" \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=$BUILD_SHARED_LIBS \
-DCMAKE_INSTALL_PREFIX=${CONDA_PREFIX} \
-Dgtest_force_shared_crt=ON \
-DBUILD_TESTING=ON \
-DCMAKE_LIBRARY_PATH:FILEPATH=$ENTWINE_LIBRARY_PATH \
-DCMAKE_INCLUDE_PATH:FILEPATH=$ENTWINE_INCLUDE_PATH \
-D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING=1 \
-DBUILD_SHARED_LIBS=ON \
--debug-find \
..
Expand Down

0 comments on commit 98091b3

Please sign in to comment.