mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
contrib: import GtkBitset as EggBitset
This imports GTK's GtkBitset and the underlying roaring bitmaps so that we will have it without having to use GTK from libsysprof-analyze.
This commit is contained in:
17
contrib/eggbitset/meson.build
Normal file
17
contrib/eggbitset/meson.build
Normal file
@ -0,0 +1,17 @@
|
||||
libeggbitset_sources = [
|
||||
'eggbitset.c',
|
||||
]
|
||||
|
||||
libeggbitset_deps = [
|
||||
dependency('gio-2.0', version: glib_req_version),
|
||||
]
|
||||
|
||||
libeggbitset_static = static_library('eggbitset', libeggbitset_sources,
|
||||
gnu_symbol_visibility: 'hidden',
|
||||
dependencies: libeggbitset_deps,
|
||||
)
|
||||
|
||||
libeggbitset_static_dep = declare_dependency(
|
||||
include_directories: include_directories('.'),
|
||||
link_with: libeggbitset_static,
|
||||
)
|
||||
Reference in New Issue
Block a user