mirror of
https://github.com/ThrowTheSwitch/CException
synced 2025-02-08 03:48:43 -05: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)
|