tools/CMakeLists.txt
author Aravindakshan Babu <akshan@stanford.edu>
Thu, 08 Jul 2010 23:50:39 -0700
branchdev
changeset 217 64a272a34cb2
parent 167 5a5f3e1c466b
child 245 3a3dd22a98d9
child 250 021030a8f97c
permissions -rw-r--r--
Added extra functionality to Point class( an iterator ) and PersistenceDiagram( dimension property and __len__ func ). persistence-diagram.h: Added a new read-only dimension member and member function to access it. With a new constructor that that takes in an int type to initialize dimension. persistence-diagram.cpp: Added new bp::init constructor. Takes in an integer type to initialize the dimension. Exposed the dimension property. Exposed the size property via a __len__ method. __init__.py: Added an iterator for Point objects. This iterates over the coords and then the data( if present ).

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)