COSC-4P80-Assignment-2/lib/eigen-3.4.0/demos/CMakeLists.txt

14 lines
278 B
CMake
Raw Normal View History

2024-10-21 16:42:03 -04:00
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()