mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
Generalized the radix tree code from page_tree as util::radix_tree so that it can be used elsewhere.
33 lines
724 B
Python
33 lines
724 B
Python
# vim: ft=python
|
|
|
|
module("util",
|
|
kind = "lib",
|
|
sources = [
|
|
"cdb.cpp",
|
|
"bip_buffer.cpp",
|
|
"format.cpp",
|
|
"spinlock.cpp",
|
|
],
|
|
public_headers = [
|
|
"util/allocator.h",
|
|
"util/basic_types.h",
|
|
"util/bip_buffer.h",
|
|
"util/bitset.h",
|
|
"util/cdb.h",
|
|
"util/counted.h",
|
|
"util/deque.h",
|
|
"util/enum_bitfields.h",
|
|
"util/format.h",
|
|
"util/hash.h",
|
|
"util/linked_list.h",
|
|
"util/map.h",
|
|
"util/misc.h",
|
|
"util/no_construct.h",
|
|
"util/node_map.h",
|
|
"util/pointers.h",
|
|
"util/radix_tree.h",
|
|
"util/spinlock.h",
|
|
"util/util.h",
|
|
"util/vector.h",
|
|
])
|