-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
26 lines (21 loc) · 1.36 KB
/
meson.build
File metadata and controls
26 lines (21 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
###################################################################################
# #
# NAME: meson.build #
# #
# AUTHOR: Michael Brockus. #
# #
# CONTACT: <mailto:michael@squidfarts.com> #
# #
# NOTICES: #
# #
# License: MIT #
# #
###################################################################################
project('objc-example', 'objcpp',
version : '0.1.0',
license : 'MIT',
meson_version : '>=0.50.0')
subdir('src')
install_data(
sources: [ 'code_of_conduct.md', 'license.md', 'readme.md' ],
install_dir: join_paths(get_option('datadir'), meson.project_name()))