LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / demos / mandelbrot / CMakeLists.txt
blob5c500e064dec6a01c8b203e250f746d26b7e626f
1 find_package(Qt4 REQUIRED)
3 set(CMAKE_INCLUDE_CURRENT_DIR ON)
5 if (CMAKE_COMPILER_IS_GNUCXX)
6    set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2")
7    add_definitions ( "-DNDEBUG" )
8 endif (CMAKE_COMPILER_IS_GNUCXX)
10 include_directories( ${QT_INCLUDE_DIR} )
12 set(mandelbrot_SRCS
13     mandelbrot.cpp
16 qt4_automoc(${mandelbrot_SRCS})
18 add_executable(mandelbrot ${mandelbrot_SRCS})
19 add_dependencies(demos mandelbrot)
21 target_link_libraries(mandelbrot ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})