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.
14 lines
278 B
14 lines
278 B
2 years ago
|
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()
|