tools/CMakeLists.txt
author Aravindakshan Babu <akshan@stanford.edu>
Fri, 02 Jul 2010 04:19:29 -0700
branchdev
changeset 215 e94d521b72bb
parent 167 5a5f3e1c466b
child 245 3a3dd22a98d9
child 250 021030a8f97c
permissions -rw-r--r--
Added code to expose the persistence_diagram class, the bottleneck_distance function and the point class to python. Most of the commonly used methods for each class have been exported. The constructor for point now requires that a data argument be provided along with x and y coord. This needs to be made optional. The constructor for persistence_diagram could possibly be rewritten as well.

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)