You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 300B

12345678910
  1. SET(LIBKANNSRC kautodiff.c kann.c)
  2. ADD_LIBRARY(rspamd-kann SHARED ${LIBKANNSRC})
  3. IF(WITH_BLAS)
  4. MESSAGE(STATUS "Use openblas to accelerate kann")
  5. TARGET_LINK_LIBRARIES(rspamd-kann ${BLAS_REQUIRED_LIBRARIES})
  6. ENDIF(WITH_BLAS)
  7. INSTALL(TARGETS rspamd-kann LIBRARY DESTINATION ${RSPAMD_LIBDIR})