mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-02 02:00:37 +08:00
* add ./debug and ./release scripts
* update the messages * rename EIGEN_CMAKE_RUN_FROM_CTEST to something saner
This commit is contained in:
parent
fc492b6264
commit
358452bbe6
@ -131,11 +131,11 @@ add_subdirectory(doc EXCLUDE_FROM_ALL)
|
|||||||
|
|
||||||
include(CTest)
|
include(CTest)
|
||||||
enable_testing() # must be called from the root CMakeLists, see man page
|
enable_testing() # must be called from the root CMakeLists, see man page
|
||||||
if(EIGEN_CMAKE_RUN_FROM_CTEST)
|
if(EIGEN_LEAVE_TEST_IN_ALL_TARGET)
|
||||||
add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest
|
add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest
|
||||||
else(EIGEN_CMAKE_RUN_FROM_CTEST)
|
else()
|
||||||
add_subdirectory(test EXCLUDE_FROM_ALL)
|
add_subdirectory(test EXCLUDE_FROM_ALL)
|
||||||
endif(EIGEN_CMAKE_RUN_FROM_CTEST)
|
endif()
|
||||||
|
|
||||||
add_subdirectory(unsupported)
|
add_subdirectory(unsupported)
|
||||||
|
|
||||||
@ -143,6 +143,8 @@ add_subdirectory(demos EXCLUDE_FROM_ALL)
|
|||||||
|
|
||||||
add_subdirectory(blas EXCLUDE_FROM_ALL)
|
add_subdirectory(blas EXCLUDE_FROM_ALL)
|
||||||
|
|
||||||
|
add_subdirectory(scripts EXCLUDE_FROM_ALL)
|
||||||
|
|
||||||
# TODO: consider also replacing EIGEN_BUILD_BTL by a custom target "make btl"?
|
# TODO: consider also replacing EIGEN_BUILD_BTL by a custom target "make btl"?
|
||||||
if(EIGEN_BUILD_BTL)
|
if(EIGEN_BUILD_BTL)
|
||||||
add_subdirectory(bench/btl EXCLUDE_FROM_ALL)
|
add_subdirectory(bench/btl EXCLUDE_FROM_ALL)
|
||||||
@ -155,16 +157,18 @@ message("Configured Eigen ${EIGEN_VERSION_NUMBER}")
|
|||||||
|
|
||||||
string(TOLOWER "${CMAKE_GENERATOR}" cmake_generator_tolower)
|
string(TOLOWER "${CMAKE_GENERATOR}" cmake_generator_tolower)
|
||||||
if(cmake_generator_tolower MATCHES "makefile")
|
if(cmake_generator_tolower MATCHES "makefile")
|
||||||
message("You can now do the following:")
|
message("Some things you can do now:")
|
||||||
message("--------------+----------------------------------------------------------------")
|
message("--------------+----------------------------------------------------------------")
|
||||||
message("Command | Description")
|
message("Command | Description")
|
||||||
message("--------------+----------------------------------------------------------------")
|
message("--------------+----------------------------------------------------------------")
|
||||||
message("make install | Install to ${CMAKE_INSTALL_PREFIX}")
|
message("make install | Install to ${CMAKE_INSTALL_PREFIX}")
|
||||||
message(" | * To change that: cmake . -DCMAKE_INSTALL_PREFIX=yourpath")
|
message(" | * To change that: cmake . -DCMAKE_INSTALL_PREFIX=yourpath")
|
||||||
message("make btest | Build the unit tests")
|
|
||||||
message("make test | Build and run the unit tests (using CTest)")
|
|
||||||
message("make test_qr | Build a specific test, here test_qr.")
|
|
||||||
message("make blas | Build BLAS library (not the same thing as Eigen)")
|
|
||||||
message("make doc | Generate the API documentation, requires Doxygen & LaTeX")
|
message("make doc | Generate the API documentation, requires Doxygen & LaTeX")
|
||||||
|
message("make blas | Build BLAS library (not the same thing as Eigen)")
|
||||||
message("--------------+----------------------------------------------------------------")
|
message("--------------+----------------------------------------------------------------")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
message("")
|
||||||
|
message("To build/run the unit tests, read this page:")
|
||||||
|
message(" http://eigen.tuxfamily.org/index.php?title=Tests")
|
||||||
|
message("")
|
@ -138,15 +138,12 @@ macro(ei_testing_print_summary)
|
|||||||
message("*** Eigen's unit tests configuration summary ***")
|
message("*** Eigen's unit tests configuration summary ***")
|
||||||
message("************************************************************")
|
message("************************************************************")
|
||||||
message("")
|
message("")
|
||||||
message("Build type: ${CMAKE_BUILD_TYPE}")
|
message("Build type: ${CMAKE_BUILD_TYPE}")
|
||||||
message(" * To change that: cmake . -DCMAKE_BUILD_TYPE=type")
|
|
||||||
message(" * Available types are Debug and Release")
|
|
||||||
message("")
|
|
||||||
get_property(EIGEN_TESTING_SUMMARY GLOBAL PROPERTY EIGEN_TESTING_SUMMARY)
|
get_property(EIGEN_TESTING_SUMMARY GLOBAL PROPERTY EIGEN_TESTING_SUMMARY)
|
||||||
get_property(EIGEN_TESTED_BACKENDS GLOBAL PROPERTY EIGEN_TESTED_BACKENDS)
|
get_property(EIGEN_TESTED_BACKENDS GLOBAL PROPERTY EIGEN_TESTED_BACKENDS)
|
||||||
get_property(EIGEN_MISSING_BACKENDS GLOBAL PROPERTY EIGEN_MISSING_BACKENDS)
|
get_property(EIGEN_MISSING_BACKENDS GLOBAL PROPERTY EIGEN_MISSING_BACKENDS)
|
||||||
message("Enabled backends: ${EIGEN_TESTED_BACKENDS}")
|
message("Enabled backends: ${EIGEN_TESTED_BACKENDS}")
|
||||||
message("Disabled backends: ${EIGEN_MISSING_BACKENDS}")
|
message("Disabled backends: ${EIGEN_MISSING_BACKENDS}")
|
||||||
|
|
||||||
if(EIGEN_TEST_SSE2)
|
if(EIGEN_TEST_SSE2)
|
||||||
message("SSE2: ON")
|
message("SSE2: ON")
|
||||||
|
4
scripts/CMakeLists.txt
Normal file
4
scripts/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
configure_file(maketests.in ${CMAKE_BINARY_DIR}/maketests)
|
||||||
|
configure_file(mctestr.in ${CMAKE_BINARY_DIR}/mctestr)
|
||||||
|
configure_file(debug.in ${CMAKE_BINARY_DIR}/debug)
|
||||||
|
configure_file(release.in ${CMAKE_BINARY_DIR}/release)
|
3
scripts/debug.in
Executable file
3
scripts/debug.in
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Debug .
|
3
scripts/release.in
Executable file
3
scripts/release.in
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
@ -162,6 +162,3 @@ if(CMAKE_COMPILER_IS_GNUCXX)
|
|||||||
endif(CMAKE_COMPILER_IS_GNUCXX)
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
||||||
ei_add_property(EIGEN_TESTING_SUMMARY "CXX_FLAGS: ${CMAKE_CXX_FLAGS}\n")
|
ei_add_property(EIGEN_TESTING_SUMMARY "CXX_FLAGS: ${CMAKE_CXX_FLAGS}\n")
|
||||||
ei_add_property(EIGEN_TESTING_SUMMARY "Sparse lib flags: ${SPARSE_LIBS}\n")
|
ei_add_property(EIGEN_TESTING_SUMMARY "Sparse lib flags: ${SPARSE_LIBS}\n")
|
||||||
|
|
||||||
configure_file(maketests.in ${CMAKE_BINARY_DIR}/maketests)
|
|
||||||
configure_file(mctestr.in ${CMAKE_BINARY_DIR}/mctestr)
|
|
||||||
|
@ -148,7 +148,7 @@ endif(NOT EIGEN_NO_UPDATE)
|
|||||||
# which ctest command to use for running the dashboard
|
# which ctest command to use for running the dashboard
|
||||||
SET (CTEST_COMMAND "${EIGEN_CMAKE_DIR}ctest -D ${EIGEN_MODE}")
|
SET (CTEST_COMMAND "${EIGEN_CMAKE_DIR}ctest -D ${EIGEN_MODE}")
|
||||||
# what cmake command to use for configuring this dashboard
|
# what cmake command to use for configuring this dashboard
|
||||||
SET (CTEST_CMAKE_COMMAND "${EIGEN_CMAKE_DIR}cmake -DEIGEN_CMAKE_RUN_FROM_CTEST=ON")
|
SET (CTEST_CMAKE_COMMAND "${EIGEN_CMAKE_DIR}cmake -DEIGEN_LEAVE_TEST_IN_ALL_TARGET=ON")
|
||||||
|
|
||||||
####################################################################
|
####################################################################
|
||||||
# The values in this section are optional you can either
|
# The values in this section are optional you can either
|
||||||
|
Loading…
x
Reference in New Issue
Block a user