1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

Added option with_examples and version info.

This commit is contained in:
Michael Brockus
2019-07-03 15:31:26 -07:00
parent ab9f8d0959
commit b1fd5ad887

View File

@@ -12,6 +12,7 @@
project('unity', 'c',
version : '2.4.3',
license : 'MIT',
meson_version : '>=0.50.0',
default_options :
@@ -77,3 +78,8 @@ unity_dep = declare_dependency(
version: meson.project_version(),
link_with: unity_lib,
include_directories: unity_dir)
if get_option('with_examples').enabled()
subdir('examples')
endif