blob: a27f04789262f05cae144f6387b458e3ab17f96d [file]
# SPDX-FileCopyrightText: The Eigen Authors
# SPDX-License-Identifier: MPL-2.0
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()