You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
296 B

  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(QT4_FOUND)
  9. message(STATUS "Qt4 not found, so disabling the mandelbrot and opengl demos")
  10. endif(QT4_FOUND)
  11. endif()