rocksdb-native 3.6.4 → 3.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CMakeLists.txt CHANGED
@@ -9,14 +9,15 @@ project(rocksdb_native C CXX)
9
9
 
10
10
  bare_target(target)
11
11
 
12
- fetch_package("github:holepunchto/librocksdb#2abcccb")
12
+ fetch_package("github:holepunchto/librocksdb#46df5ef")
13
+ fetch_package("github:holepunchto/libjstl#34a7894")
13
14
 
14
15
  add_bare_module(rocksdb_native_bare)
15
16
 
16
17
  target_sources(
17
18
  ${rocksdb_native_bare}
18
19
  PRIVATE
19
- binding.c
20
+ binding.cc
20
21
  )
21
22
 
22
23
  target_link_libraries(
@@ -24,6 +25,7 @@ target_link_libraries(
24
25
  PRIVATE
25
26
  $<TARGET_OBJECTS:rocksdb>
26
27
  $<TARGET_OBJECTS:path>
28
+ jstl
27
29
  PUBLIC
28
30
  rocksdb
29
31
  rocksdb_facebook
@@ -35,7 +37,7 @@ add_napi_module(rocksdb_native_napi)
35
37
  target_sources(
36
38
  ${rocksdb_native_napi}
37
39
  PRIVATE
38
- binding.c
40
+ binding.cc
39
41
  )
40
42
 
41
43
  target_compile_definitions(
@@ -49,6 +51,7 @@ target_link_libraries(
49
51
  PRIVATE
50
52
  $<TARGET_OBJECTS:rocksdb>
51
53
  $<TARGET_OBJECTS:path>
54
+ jstl
52
55
  PUBLIC
53
56
  rocksdb
54
57
  rocksdb_facebook