tests/geometry/CMakeLists.txt
author Christos Mantoulidis <cmad@stanford.edu>
Mon, 27 Jul 2009 21:42:51 -0700
branchdev
changeset 152 fdc2835b3e88
parent 87 2c2e2f3b5d15
child 198 e95766342e5f
permissions -rw-r--r--
added logging to WeightedRips (still needs debugging)

set							(targets
							 euclidean
							 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})