examples/triangle/CMakeLists.txt
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 03 Sep 2008 10:59:35 -0700
branchdev
changeset 88 9e00cf44ea5d
parent 30 6d4e450015e4
child 97 0a9bd3f34419
permissions -rw-r--r--
Added cmake_minimum_required for compatibility with CMake 2.6

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