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 443B

1234567891011
  1. SET(HTTPSRC http_parser.c)
  2. ADD_LIBRARY(rspamd-http-parser ${LINK_TYPE} ${HTTPSRC})
  3. SET_TARGET_PROPERTIES(rspamd-http-parser PROPERTIES VERSION ${RSPAMD_VERSION})
  4. SET_TARGET_PROPERTIES(rspamd-http-parser PROPERTIES COMPILE_FLAGS "-DRSPAMD_LIB")
  5. IF(NO_SHARED MATCHES "OFF")
  6. INSTALL(TARGETS rspamd-http-parser
  7. LIBRARY DESTINATION ${LIBDIR}
  8. PUBLIC_HEADER DESTINATION ${INCLUDEDIR})
  9. ENDIF(NO_SHARED MATCHES "OFF")