-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSConscript
More file actions
38 lines (34 loc) · 917 Bytes
/
SConscript
File metadata and controls
38 lines (34 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Import("env")
env.Library(
target= 'storage_pmse_base',
source= [
'src/pmse_engine.cpp',
'src/pmse_record_store.cpp',
'src/pmse_list_int_ptr.cpp',
'src/pmse_list.cpp',
'src/pmse_record_store.cpp',
'src/pmse_sorted_data_interface.cpp',
'src/pmse_tree.cpp'
],
LIBDEPS= [
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/db/namespace_string',
'$BUILD_DIR/mongo/db/catalog/collection_options',
'$BUILD_DIR/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_record_store',
'$BUILD_DIR/mongo/db/storage/kv/kv_storage_engine',
],
SYSLIBDEPS=[
"pmem",
"pmemobj",
]
)
env.Library(
target='storage_pmse',
source=[
'src/pmse_init.cpp',
],
LIBDEPS=[
'storage_pmse_base',
],
LIBDEPS_DEPENDENTS=['$BUILD_DIR/mongo/db/serveronly']
)