tools/CMakeLists.txt
author Dmitriy Morozov <dmitriy@mrzv.org>
Mon, 31 Aug 2009 10:51:56 -0700
branchdev
changeset 167 5a5f3e1c466b
parent 124 af54138b98fd
child 245 3a3dd22a98d9
child 250 021030a8f97c
permissions -rw-r--r--
Removed Qt4 requirement + added link to download and tutorial to the front page of the documentation

find_package                (Qt4)

if                          (QT4_FOUND)
    set                     (QT_USE_QTOPENGL TRUE)
    set                     (QT_USE_QTXML TRUE)
    include                 (${QT_USE_FILE})

    add_subdirectory        (diagram-viewer)
#find_library                (gle_LIBRARY                NAMES gle)
#find_library                (QGLViewer_LIBRARY          NAMES QGLViewer)
#find_path                   (QGLViewer_INCLUDE_DIR      QGLViewer/qglviewer.h)
#include_directories         (${QGLViewer_INCLUDE_DIR})
endif                       (QT4_FOUND)


add_executable              (extract-diagram                extract-diagram.cpp)
target_link_libraries       (extract-diagram                ${libraries} ${Boost_SERIALIZATION_LIBRARY})

add_subdirectory            (matching)