tools/diagram-viewer/CMakeLists.txt
author Dmitriy Morozov <dmitriy@mrzv.org>
Tue, 03 Feb 2009 11:31:10 -0800
branchdev
changeset 114 374f94f92e50
parent 99 6c0da7931e4d
permissions -rw-r--r--
Updated Rips zigzags * Updated to use Bron-Kerbosch * Compute in the order of increasing epsilon, and decreasing point sizes * Split into plain zigzag (rips-zigzag) and image zigzag (rips-image-zigzag) * Added minor enhancements (show_progress and timers)

set                         (diagram-viewerSources
                             diagram.cpp 
                             diagram-viewer-main.cpp)

set                         (diagram-viewerHeaders
                             diagram.h)

qt4_wrap_cpp                (diagram-viewerMocSources       ${diagram-viewerHeaders})

set                         (libraries                      ${libraries} 
                                                            ${Boost_SERIALIZATION_LIBRARY}
                                                            ${Boost_PROGRAM_OPTIONS_LIBRARY}
                                                            ${QT_LIBRARIES})

add_executable              (diagram-viewer                 ${diagram-viewerSources} 
                                                            ${diagram-viewerMocSources})

target_link_libraries       (diagram-viewer                 ${libraries})