Skip to content

Commit

Permalink
fix weird interaction with cmake value checking
Browse files Browse the repository at this point in the history
on windows, cmake is interpreting the empty string as a set value which
causes problems in eigen/blas/CMakeLists.txt. Instead, correlate the
value with a 'false'
  • Loading branch information
f4alt committed Feb 12, 2024
1 parent 01c306b commit c1e676f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eigen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (ENABLE_EIGEN)
-DBUILD_STATIC_LIBS=${BUILD_STATIC_LIBS}
-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
-DCMAKE_Fortran_COMPILER=""
-DCMAKE_Fortran_COMPILER=OFF
-DCMAKE_INSTALL_PREFIX=${CMAKE_NOBUNDLE_INSTALL_PREFIX}
-DCMAKE_INSTALL_LIBDIR:PATH=${LIB_DIR}
-DCMAKE_INSTALL_RPATH=${CMAKE_BUNDLE_INSTALL_PREFIX}/${LIB_DIR}
Expand Down

0 comments on commit c1e676f

Please sign in to comment.