CMakeLists.txt 595 字节
Newer Older
H
Hongze Cheng 已提交
1
# rocksdb
2 3
message("contrib test dir:" ${BUILD_WITH_ROCKSDB})

H
Hongze Cheng 已提交
4 5 6
if(${BUILD_WITH_ROCKSDB})
    add_subdirectory(rocksdb)
endif(${BUILD_WITH_ROCKSDB})
H
Hongze Cheng 已提交
7 8 9 10

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

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

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

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

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

H
Hongze Cheng 已提交
28
add_subdirectory(tdev)
H
Hongze Cheng 已提交
29
add_subdirectory(lz4)