CMakeLists.txt 359 字节
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 13
if(${BUILD_WITH_BDB})
    add_subdirectory(bdb)
endif(${BUILD_WITH_BDB})

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

H
Hongze Cheng 已提交
18
add_subdirectory(tdev)