add debug targets like debug_qr to build a specific test with debug info

remove the btest target, instead just do "make" since anyway we have to let "make" build the tests
This commit is contained in:
Benoit Jacob
2009-10-03 16:50:50 -04:00
parent 3e4cb08054
commit a1d9b76dd5
3 changed files with 26 additions and 9 deletions

View File

@@ -146,10 +146,13 @@ message("Command | Description")
message("-------------+-----------------------------------------------------------------")
message("make install | Install to ${CMAKE_INSTALL_PREFIX}")
message(" | To change that, do: cmake . -DCMAKE_INSTALL_PREFIX=yourpath")
message("make doc | Generate the API documentation, requires Doxygen & LaTeX")
message("make btest | Build the unit tests (doesn't run them)")
message("make | Build the unit tests")
message(" | Note: that's NOT needed if you just want to install Eigen!")
message(" | Note: this takes lots of time & memory! Easy on the -j option!")
message("make test | Build and run the unit tests (using CTest)")
message("make test_qr | Build a specific test, here test_qr. To run it: test/test_qr")
message("make debug_qr| Build a test with full debug info. To run it: test/debug_qr")
message("make blas | Build BLAS library")
message("make doc | Generate the API documentation, requires Doxygen & LaTeX")
message("-------------+-----------------------------------------------------------------")