CMakeLists.txt 208 B

123456789101112
  1. set(BASE_ADDITIONAL_SOURCES)
  2. if (HAVE_SYSLOG_H)
  3. list(APPEND BASE_ADDITIONAL_SOURCES BLog_syslog.c)
  4. endif ()
  5. add_library(base
  6. DebugObject.c
  7. BLog.c
  8. BPending.c
  9. ${BASE_ADDITIONAL_SOURCES}
  10. )