aboutsummaryrefslogtreecommitdiffhomepage
path: root/demos/CMakeLists.txt
blob: deb560f09706638f7c866b36c0c1f59a7d5b7b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()