project(ClusteringBase)

FIND_PACKAGE(Boost )

if(NOT Boost_FOUND)
	MESSAGE(FATAL_ERROR "Boost not found!")
endif(NOT Boost_FOUND)

include_directories(
    ${Boost_INCLUDE_DIR}
    ${Matrices_SOURCE_DIR}
    )
link_directories(${Matrices_BINARY_DIR})

add_library (clusteringbase Cluster.cpp Link.cpp)

target_link_libraries(clusteringbase ${Boost_LIBRARIES} )

