CMakeLists.txt 278 B

12345678910111213
  1. project(EigenDemos)
  2. add_custom_target(demos)
  3. if(NOT EIGEN_TEST_NOQT)
  4. find_package(Qt4)
  5. if(QT4_FOUND)
  6. add_subdirectory(mandelbrot)
  7. add_subdirectory(opengl)
  8. else()
  9. message(STATUS "Qt4 not found, so disabling the mandelbrot and opengl demos")
  10. endif()
  11. endif()