mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-18 14:34:17 +08:00
1dabb45d94
This is the initial commit for Eigen2, since I restarted it from scratch on Sunday.
24 lines
402 B
CMake
24 lines
402 B
CMake
IF(BUILD_TESTS)
|
|
|
|
ENABLE_TESTING()
|
|
FIND_PACKAGE(Qt4 REQUIRED)
|
|
INCLUDE_DIRECTORIES( ${QT_INCLUDE_DIR} )
|
|
|
|
SET(test_SRCS
|
|
main.cpp
|
|
vectorops.cpp
|
|
matrixops.cpp
|
|
matrixmanip.cpp
|
|
)
|
|
QT4_AUTOMOC(${test_SRCS})
|
|
INCLUDE_DIRECTORIES(
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|
|
|
|
ADD_EXECUTABLE(test ${test_SRCS})
|
|
TARGET_LINK_LIBRARIES(test ${QT_QTCORE_LIBRARY} ${QT_QTTEST_LIBRARY})
|
|
|
|
ADD_TEST(Eigen test)
|
|
|
|
ENDIF(BUILD_TESTS)
|