cmake_minimum_required(VERSION 3.0 FATAL_ERROR) include_directories( ${TYPES_INCLUDE_DIR} ${UTILS_INCLUDE_DIR} # ${GMM_INCLUDE_DIR} # ${GSL_INCLUDE_DIR} # ${CGAL_INCLUDE_DIR} ) link_directories( ${DGQT_LIBRARY_DIRS} # ${GSL_LIBRARY_DIR} # ${BLAS_LIBRARY_DIR} # ${LAPACK_LIBRARY_DIR} # ${CGAL_LIBRARY_DIR} ) add_library(voro STATIC common.cpp cell.cpp c_loops.cpp v_base.cpp unitcell.cpp v_compute.cpp container.cpp container_prd.cpp pre_container.cpp wall.cpp line.cpp plane.cpp ellipsoid.cpp) set_target_properties(voro PROPERTIES COMPILE_FLAGS "-Wno-unused-variable") target_link_libraries(voro ${DGQT_LIBRARIES} ${GSL_LIBRARIES} ${BLAS_LIBRARIES} ${LAPACK_LIBRARIES} # ${CGAL_LIBRARIES} )