Files
FastDeploy/third_party/eigen/demos/CMakeLists.txt
Jack Zhou 355382ad63 Move eigen to third party (#282)
* remove useless statement

* Add eigen to third_party dir

* remove reducdant lines
2022-09-26 19:24:02 +08:00

14 lines
278 B
CMake

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()