examples/pl-functions/CMakeLists.txt
author Dmitriy Morozov <dmitriy@mrzv.org>
Fri, 05 Mar 2010 09:26:54 -0800
branchdev
changeset 205 f5d010aecc97
parent 184 a5e726461d3f
child 237 92b59e2e6fb3
permissions -rw-r--r--
Count cocycles in CohomologyPersistence

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} ${Boost_PROGRAM_OPTIONS_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)