mirror of
https://github.com/ThrowTheSwitch/CException
synced 2025-01-22 01:48:42 -05:00
15 lines
351 B
Meson
15 lines
351 B
Meson
#
|
|
# build script written by : Michael Brockus.
|
|
# github repo author: Mark VanderVoord.
|
|
#
|
|
# license: MIT
|
|
#
|
|
project('cexception', 'c',
|
|
license: 'MIT',
|
|
meson_version: '>=0.53.0',
|
|
default_options: ['werror=true', 'c_std=c11']
|
|
)
|
|
|
|
subdir('lib')
|
|
cexception_dep = declare_dependency(link_with: cexception_lib, include_directories: cexception_dir)
|