tools/diagram-viewer/CMakeLists.txt
author Christos Mantoulidis <cmad@stanford.edu>
Mon, 13 Jul 2009 19:44:04 -0700
branchdev
changeset 151 104ea146b9bc
parent 99 6c0da7931e4d
permissions -rw-r--r--
Updated weighted rips libraries to make use of OOP--now WeightedRips inherits from Rips. It is possible that logging for WeightedRips does not work.

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})