examples/grid/CMakeLists.txt
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 16 Dec 2009 15:39:38 -0800
branchdev
changeset 180 27508309a680
parent 179 d15c6d144645
permissions -rw-r--r--
Created pl-vineyard.cpp to compute vineyards given a complex and a sequence of values at each vertex

set							(targets						
							 test-grid2D 
							 test-grid2D-vineyard
							 combustion-vineyard)

if                          (use_dsrpdb)
    set                     (targets                    ${targets}
                            							pdbdistance-vineyard)
endif                       (use_dsrpdb)

if                              (CGAL_FOUND)
    # add_definitions             (${CGAL_CXX_FLAGS_INIT})
    add_definitions             (-frounding-math)
    include_directories         (${CGAL_INCLUDE_DIRS})

    foreach 					(t ${targets})
        add_executable			(${t} ${t}.cpp)
        target_link_libraries	(${t} ${libraries} ${CGAL_LIBRARY} ${dsrpdb_LIBRARY})
    endforeach 					(t ${targets})
    
    # Extra special for program_options
    add_executable			(pl-vineyard pl-vineyard.cpp)
    target_link_libraries   (pl-vineyard ${libraries} ${CGAL_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY})
endif                           (CGAL_FOUND)