tests/geometry/CMakeLists.txt
author Aravindakshan Babu <akshan@stanford.edu>
Wed, 18 Aug 2010 12:05:18 -0700
branchdev
changeset 220 d07d77561661
parent 198 e95766342e5f
permissions -rw-r--r--
Removed the points iterator in PersistenceDaigram; replaced it with a __iter__ method. Got rid of some python code in __init__.py, since it was not needed with the above change. Changed the docs to reflect this.

set							(targets
							 euclidean
                             test-ksort-linear
							 test-eventqueue)

if                          (use_synaps)
    set                     (targets                    ${targets}
                                                        polynomial
                                                        test-kinetic-sort
							                            test-linalg)
endif                       (use_synaps)

foreach 					(t ${targets})
	add_executable			(${t} ${t}.cpp)
	target_link_libraries	(${t} ${synaps_libraries} ${libraries})
endforeach 					(t ${targets})