@@ -124,7 +124,7 @@ add_subdirectory(doc EXCLUDE_FROM_ALL)
124124
125125include (CTest )
126126enable_testing () # must be called from the root CMakeLists, see man page
127- add_subdirectory (test ) # can't do EXCLUDE_FROM_ALL here, breaks CTest
127+ add_subdirectory (test EXCLUDE_FROM_ALL ) # can't do EXCLUDE_FROM_ALL here, breaks CTest
128128
129129add_subdirectory (unsupported )
130130
@@ -145,24 +145,12 @@ message("--------------+--------------------------------------------------------
145145message ("Command | Description" )
146146message ("--------------+----------------------------------------------------------------" )
147147message ("make install | Install to ${CMAKE_INSTALL_PREFIX} " )
148- message (" | To change that: cmake . -DCMAKE_INSTALL_PREFIX=yourpath" )
149- message ("make | Build the unit tests" )
150- message (" | * That's not needed if you just want to install Eigen!" )
151- message (" | * That takes lots of memory! Easy on the -j option!" )
148+ message (" | * To change that: cmake . -DCMAKE_INSTALL_PREFIX=yourpath" )
149+ message ("make btest | Build the unit tests" )
150+ message (" | * That takes lots of memory! Easy on the -j option" )
152151message ("make test | Build and run the unit tests (using CTest)" )
153152message ("make test_qr | Build a specific test, here test_qr. To run it: test/test_qr" )
154153message ("make debug_qr | Build a test with full debug info. To run it: test/debug_qr" )
155154message ("make blas | Build BLAS library (not the same thing as Eigen)" )
156155message ("make doc | Generate the API documentation, requires Doxygen & LaTeX" )
157156message ("--------------+----------------------------------------------------------------" )
158-
159- if (NOT EIGEN_CMAKE_ALREADY_RUN)
160- unset (EIGEN_CMAKE_ALREADY_RUN CACHE ) # in case it was manually set to OFF in cache
161- set (EIGEN_CMAKE_ALREADY_RUN "ON" CACHE BOOL "Set to ON if CMake has already run here." )
162- message ("" )
163- message ("First-time tip:" )
164- message ("" )
165- message ("If you just want to install Eigen, do 'make install' right away." )
166- message ("No need to do 'make' before. See INSTALL file for more details." )
167- message ("" )
168- endif (NOT EIGEN_CMAKE_ALREADY_RUN )
0 commit comments