project (remove_zeros)

FIND_PACKAGE(Boost COMPONENTS program_options filesystem)

include_directories (${Matrices_SOURCE_DIR} ${Boost_INCLUDE_DIR})

add_executable(remove_zeros remove_zeros.cpp )

target_link_libraries(remove_zeros matrices ${Boost_LIBRARIES})
target_link_libraries(remove_zeros ${LOG4CXX_LIBRARY})

install(TARGETS remove_zeros
	RUNTIME DESTINATION bin
	)
