Import("env")

env.Library(
    target= 'storage_heap1',
    source= [
        'heap1_btree_impl.cpp',
        'heap1_database_catalog_entry.cpp',
        'heap1_engine.cpp',
        ],
    LIBDEPS= [
        'heap_record_store',
        '$BUILD_DIR/mongo/bson',
        '$BUILD_DIR/mongo/db/catalog/collection_options',
        '$BUILD_DIR/mongo/foundation',
        ]
    )

env.Library(
    target= 'heap_record_store',
    source= [
        'record_store_heap.cpp'
        ],
    LIBDEPS= [
        '$BUILD_DIR/mongo/bson',
        '$BUILD_DIR/mongo/foundation',
        ]
    )

#env.CppUnitTest(
#    target='storage_heap1_test',
#    source=['heap1_test.cpp',
#            ],
#    LIBDEPS=[
#        'storage_heap1'
#        ]
#    )

