examples/alphashapes/CMakeLists.txt
author Dmitriy Morozov <morozov@cs.duke.edu>
Fri, 14 Sep 2007 17:32:11 -0400
changeset 32 075da5d7d6c3
parent 30 6d4e450015e4
child 39 b85ded6b1530
permissions -rw-r--r--
Changes to CMakeLists: * Optimize and debug options derive flags from CMKAE_CXX_FLAGS* * Moved CGAL CXX flags from the top level to the specific locations where they are required

set							(targets						
							 alphashapes3d
							 alpharadius)
							 
add_definitions				(${cgal_cxxflags})
foreach 					(t ${targets})
	add_executable			(${t} ${t}.cpp)
	target_link_libraries	(${t} ${libraries} ${cgal_libraries})
endforeach 					(t ${targets})