Sha256: 9ad09623af3a0f01f01042363c1b7bde5bb209e212ccb3622fc322e0ad66cbbe

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 KB

Contents

# These define the various source file listings of various modules
# within the library.
# This is included by the top-level CMakeLists.txt

# couchbase_utils
SET(LCB_UTILS_SRC
    contrib/genhash/genhash.c
    src/strcodecs/base64.c
    src/gethrtime.c
    src/hashtable.c
    src/list.c
    src/logging.c
    src/packetutils.c
    src/ringbuffer.c
    src/simplestring.c)

# lcbio
FILE(GLOB LCB_IO_SRC src/lcbio/*.c)

# common memcached operations
FILE(GLOB LCB_OP_SRC src/operations/*.c)

# memcached packets
FILE(GLOB LCB_MC_SRC src/mc/*.c)

# read buffer management
FILE(GLOB LCB_RDB_SRC src/rdb/*.c)

# send buffer management
FILE(GLOB LCB_NETBUF_SRC src/netbuf/*.c)

# HTTP protocol management
FILE(GLOB LCB_HT_SRC src/lcbht/*.c)
LIST(APPEND LCB_HT_SRC "contrib/http_parser/http_parser.c")

# bucket config ("confmon")
FILE(GLOB LCB_BCONF_SRC src/bucketconfig/*.c)

SET(LCB_CORE_SRC
    ${LCB_OP_SRC}
    ${LCB_BCONF_SRC}
    ${LCB_N1QL_SRC}
    src/bootstrap.c
    src/callbacks.c
    src/dump.c
    src/handler.c
    src/getconfig.c
    src/legacy.c
    # src/mcserver/negotiate.c
    src/mcserver/mcserver.c
    src/newconfig.c
    src/iofactory.c
    src/retryq.c
    src/retrychk.c
    src/settings.c
    src/utilities.c
    src/wait.c)

SET(LCB_CORE_CXXSRC
    src/instance.cc
    src/auth.cc
    src/connspec.cc
    src/nodeinfo.cc
    src/hostlist.cc
    src/http/http.cc
    src/http/http_io.cc
    src/n1ql/params.cc
    src/n1ql/n1ql.cc
    src/n1ql/ixmgmt.cc
    src/cbft.cc
    src/operations/subdoc.cc
    src/mcserver/negotiate.cc
    src/cntl.cc)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libcouchbase-0.0.6 ext/libcouchbase/cmake/source_files.cmake
libcouchbase-0.0.5 ext/libcouchbase/cmake/source_files.cmake