mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-10-18 02:51:30 +08:00

* function names are changed by appending _template * it uses basic templating : template<typename T> * wrappers now use those versions instead of the ones from cminpack * lot of external methods from cminpack are still used * tests pass though they are unchanged (they use wrappers)
27 lines
593 B
CMake
27 lines
593 B
CMake
|
|
include(EigenTesting)
|
|
|
|
enable_testing()
|
|
|
|
find_package(Adolc)
|
|
|
|
include_directories(../../test)
|
|
|
|
if(ADOLC_FOUND)
|
|
include_directories(${ADOLC_INCLUDES})
|
|
ei_add_property(EIGEN_TESTED_BACKENDS "Adolc")
|
|
ei_add_test(forward_adolc " " ${ADOLC_LIBRARIES})
|
|
else(ADOLC_FOUND)
|
|
ei_add_property(EIGEN_MISSING_BACKENDS "Adolc")
|
|
endif(ADOLC_FOUND)
|
|
|
|
# temporary :
|
|
include_directories(/home/orzel/tmp/cminpack-1.0.2/)
|
|
LINK_LIBRARIES(/home/orzel/tmp/cminpack-1.0.2/libminpack.a)
|
|
|
|
ei_add_test(NonLinear)
|
|
ei_add_test(autodiff)
|
|
ei_add_test(BVH)
|
|
#ei_add_test(matrixExponential)
|
|
ei_add_test(alignedvector3)
|