mirror of
https://github.com/throwtheswitch/cexception.git
synced 2026-06-05 21:24:36 +00:00
12 lines
273 B
Meson
12 lines
273 B
Meson
#
|
|
# build script written by : Michael Brockus.
|
|
# github repo author: Mark VanderVoord.
|
|
#
|
|
# license: MIT
|
|
#
|
|
cexception_dir = include_directories('.')
|
|
|
|
cexception_lib = static_library(meson.project_name(),
|
|
files('CException.c'),
|
|
include_directories : cexception_dir)
|