39 lines
865 B
Python
39 lines
865 B
Python
# vim: ft=python
|
|
|
|
module("util",
|
|
kind = "lib",
|
|
static = True,
|
|
sources = [
|
|
"cdb.cpp",
|
|
"bip_buffer.cpp",
|
|
"format.cpp",
|
|
"spinlock.cpp",
|
|
"xoroshiro.cpp",
|
|
],
|
|
public_headers = [
|
|
"util/allocator.h",
|
|
"util/api.h",
|
|
"util/assert.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/new.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",
|
|
"util/xoroshiro.h",
|
|
])
|