mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
6fb3e5f176
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
14 lines
278 B
CMake
14 lines
278 B
CMake
project(EigenDemos)
|
|
|
|
add_custom_target(demos)
|
|
|
|
if(NOT EIGEN_TEST_NOQT)
|
|
find_package(Qt4)
|
|
if(QT4_FOUND)
|
|
add_subdirectory(mandelbrot)
|
|
add_subdirectory(opengl)
|
|
else()
|
|
message(STATUS "Qt4 not found, so disabling the mandelbrot and opengl demos")
|
|
endif()
|
|
endif()
|