mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 18:31:44 +03:00
30 lines
880 B
Meson
30 lines
880 B
Meson
project('libent', 'c', 'cpp',
|
|
default_options : ['c_std=c99', 'cpp_std=c++11'],
|
|
version : '0.0.1',
|
|
license : 'MIT')
|
|
|
|
subdir('include/ent')
|
|
|
|
inc = include_directories('include')
|
|
|
|
ent_sources = ['ent.c']
|
|
|
|
ent_dep = declare_dependency(sources : ent_sources,
|
|
compile_args : ['-Wall', '-pedantic'],
|
|
include_directories : inc)
|
|
|
|
libent = both_libraries('ent',
|
|
dependencies : [ent_dep],
|
|
install : false)
|
|
|
|
pkg_mod = import('pkgconfig')
|
|
pkg_mod.generate(libraries : libent,
|
|
version : '0.0',
|
|
name : 'libent',
|
|
filebase : 'ent',
|
|
description : 'A library to get entropy.')
|
|
|
|
ent_sample = executable('sample',
|
|
['sample.c'],
|
|
dependencies : [ent_dep])
|