Skip to content

Commit

Permalink
testing appveyor eigen include dir pass to cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoendev committed Aug 16, 2019
1 parent a02a7da commit 5567ca9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ branches:
only:
- master

environment:
EIGEN3_INCLUDE_DIR: C:\dev\Eigen3\include\eigen3

install:
- cmd: if not exist c:\dev\Eigen3\include\eigen3\Eigen\Core (
curl -L -o eigen-eigen-dc6cfdf9bcec.tar.gz https://bitbucket.org/eigen/eigen/get/3.2.9.tar.gz &&
Expand All @@ -28,6 +25,6 @@ build_script:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- rm "C:/Program Files/Git/usr/bin/sh.exe"
- cmake -E make_directory build
- cmake -E chdir build cmake -D ACADOS_WITH_QPOASES=ON -D BLASFEO_TARGET=GENERIC -D HPIPM_TARGET=GENERIC -D BUILD_SHARED_LIBS=OFF -D ACADOS_EXAMPLES=ON -D ACADOS_UNIT_TESTS=ON -G "MinGW Makefiles" ..
- cmake -E chdir build cmake -D ACADOS_WITH_QPOASES=ON -D BLASFEO_TARGET=GENERIC -D HPIPM_TARGET=GENERIC -D BUILD_SHARED_LIBS=OFF -D ACADOS_EXAMPLES=ON -D ACADOS_UNIT_TESTS=ON -DEIGEN3_INCLUDE_DIR="C:\dev\Eigen3\include\eigen3" -G "MinGW Makefiles" ..
- cmake --build build --config Release
- cmake -E chdir build ctest -V

0 comments on commit 5567ca9

Please sign in to comment.