c: Implement the C implementation of the bhash module
This commit is contained in:
12
c/bhash/meson.build
Normal file
12
c/bhash/meson.build
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
bhash_inc = include_directories('inc')
|
||||
|
||||
bhash_lib = static_library(
|
||||
'bhash',
|
||||
['src/bhash.c'],
|
||||
include_directories : bhash_inc,
|
||||
dependencies: [ cc.find_library('m', required: false) ])
|
||||
|
||||
bhash_dep = declare_dependency(link_with : bhash_lib, include_directories : bhash_inc)
|
||||
Reference in New Issue
Block a user