mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-02 02:00:37 +08:00

* remove EIGEN_BUILD_TESTS and siblings * add summary at the end of cmake run, hopefully not too verbose * fix build of quaternion demo * kill remnants of old binary library option
10 lines
229 B
CMake
10 lines
229 B
CMake
add_custom_target(demos)
|
|
|
|
find_package(Qt4)
|
|
if(QT4_FOUND)
|
|
add_subdirectory(mandelbrot)
|
|
add_subdirectory(opengl)
|
|
else(QT4_FOUND)
|
|
message(STATUS "Qt4 not found, so disabling the mandelbrot and opengl demos")
|
|
endif(QT4_FOUND)
|