-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmeson.build
More file actions
25 lines (19 loc) · 597 Bytes
/
meson.build
File metadata and controls
25 lines (19 loc) · 597 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This file is a part of marzer/spin_mutex and is subject to the the terms of the MIT license.
# Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
# See https://github.com/marzer/spin_mutex/blob/master/LICENSE for the full license text.
# SPDX-License-Identifier: MIT
project(
'spin_mutex',
'cpp',
version : '1.0.0',
meson_version : '>=0.60.0',
license : 'MIT',
default_options : [ 'cpp_std=c++11' ]
)
subdir('include')
spin_mutex_dep = declare_dependency(
include_directories: include_dir
)
if not meson.is_subproject() and get_option('build_tests')
subdir('tests')
endif