@@ -124,7 +124,7 @@ add_subdirectory(doc EXCLUDE_FROM_ALL)
124
124
125
125
include (CTest )
126
126
enable_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
128
128
129
129
add_subdirectory (unsupported )
130
130
@@ -145,24 +145,12 @@ message("--------------+--------------------------------------------------------
145
145
message ("Command | Description" )
146
146
message ("--------------+----------------------------------------------------------------" )
147
147
message ("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" )
152
151
message ("make test | Build and run the unit tests (using CTest)" )
153
152
message ("make test_qr | Build a specific test, here test_qr. To run it: test/test_qr" )
154
153
message ("make debug_qr | Build a test with full debug info. To run it: test/debug_qr" )
155
154
message ("make blas | Build BLAS library (not the same thing as Eigen)" )
156
155
message ("make doc | Generate the API documentation, requires Doxygen & LaTeX" )
157
156
message ("--------------+----------------------------------------------------------------" )
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