examples/ar-vineyard/CMakeLists.txt
author Dmitriy Morozov <morozov@cs.duke.edu>
Sun, 02 Mar 2008 16:11:05 -0500
branchar
changeset 83 cf653a5a2d4f
parent 77 8e55bf20802a
child 87 2c2e2f3b5d15
permissions -rw-r--r--
Small logging additions + maintain_lazy = false + eventqueue - Filtration::transpose( ..., maintain_lazy = false ) - EventQueue inserts a new event after all the ones equal to it, not before

set							(targets						
							 ar-vineyard)
	
find_library                (boost_signals_LIBRARY      NAMES boost_signals
                                                        PATHS ${Boost_LIBRARY_DIR})
find_library                (boost_program_options_LIBRARY      NAME boost_program_options
                                                                PATHS ${Boost_LIBRARY_DIR})

add_definitions				(${cgal_cxxflags})
foreach 					(t ${targets})
	add_executable			(${t} ${t}.cpp ${external_sources})
	target_link_libraries	(${t}   ${libraries} ${cgal_libraries} 
                                    ${synaps_libraries} ${boost_signals_LIBRARY} 
                                    ${boost_program_options_LIBRARY})
endforeach 					(t)