examples/fitness/CMakeLists.txt
author Dmitriy Morozov <morozov@cs.duke.edu>
Sat, 01 Mar 2008 04:48:49 -0500
branchar
changeset 82 167a93cca2e2
parent 48 71cdbdfb8887
child 53 cef300f2c62e
permissions -rw-r--r--
Marked #c66 and #d2a as fixed (fixes in f236c7d659d0 and abba2950aced, respectively)

set							(targets						
							 avida-distance
                             avida-landscape)
	
find_library                (boost_program_options_LIBRARY      NAME boost_program_options
                                                                PATHS ${Boost_LIBRARY_DIR})

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