blob: deb560f09706638f7c866b36c0c1f59a7d5b7b58 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001project(EigenDemos)
2
3add_custom_target(demos)
4
5if(NOT EIGEN_TEST_NOQT)
6 find_package(Qt4)
7 if(QT4_FOUND)
8 add_subdirectory(mandelbrot)
9 add_subdirectory(opengl)
Austin Schuhc55b0172022-02-20 17:52:35 -080010 else()
Brian Silverman72890c22015-09-19 14:37:37 -040011 message(STATUS "Qt4 not found, so disabling the mandelbrot and opengl demos")
Austin Schuhc55b0172022-02-20 17:52:35 -080012 endif()
Brian Silverman72890c22015-09-19 14:37:37 -040013endif()