CMakeLists.txt 543 字节
Newer Older
H
Hongze Cheng 已提交
1 2 3 4
# rocksdb
if(${BUILD_WITH_ROCKSDB})
    add_subdirectory(rocksdb)
endif(${BUILD_WITH_ROCKSDB})
H
Hongze Cheng 已提交
5 6 7 8

if(${BUILD_WITH_LUCENE})
    add_subdirectory(lucene)
endif(${BUILD_WITH_LUCENE})
H
Hongze Cheng 已提交
9

H
Hongze Cheng 已提交
10 11 12
if(${BUILD_WITH_BDB})
    add_subdirectory(bdb)
endif(${BUILD_WITH_BDB})
H
Hongze Cheng 已提交
13

H
Hongze Cheng 已提交
14 15 16 17
if(${BUILD_WITH_SQLITE})
    add_subdirectory(sqlite)
endif(${BUILD_WITH_SQLITE})

H
Hongze Cheng 已提交
18 19 20 21
if(${BUILD_WITH_CRAFT})
    add_subdirectory(craft)
endif(${BUILD_WITH_CRAFT})

M
Minghao Li 已提交
22
if(${BUILD_WITH_TRAFT})
H
more  
Hongze Cheng 已提交
23
    # add_subdirectory(traft)
M
Minghao Li 已提交
24 25
endif(${BUILD_WITH_TRAFT})

H
Hongze Cheng 已提交
26
add_subdirectory(tdev)
H
Hongze Cheng 已提交
27
add_subdirectory(lz4)