-
Notifications
You must be signed in to change notification settings - Fork 42
/
meson.build
85 lines (70 loc) · 2.08 KB
/
meson.build
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# This file is part of crest.
# SPDX-Identifier: LGPL-3.0-or-later
#
# crest is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# crest is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with crest. If not, see <https://www.gnu.org/licenses/>.
project(
'crest',
'fortran', 'c',
version: '3.0.2',
license: 'LGPL-3.0-or-later',
meson_version: '>=0.63',
default_options: [
'buildtype=debugoptimized',
'default_library=static',
'c_link_args=-static',
'fortran_link_args=-static',
],
)
install = not (meson.is_subproject() and get_option('default_library') == 'static')
# =================================== #
## General configuration information ##
# =================================== #
exe_deps = []
subdir('config')
# create the metadata file with the configured data
configure_file(
input: files('assets/template/metadata.f90'),
output: 'crest_metadata.fh',
configuration : config,
)
# Documentation
#subdir('docs')
# Collect source of the project
prog = []
srcs = []
subdir('src')
# Create library target
crest_lib = library(
meson.project_name(),
sources: srcs,
dependencies: exe_deps,
# include_directories: include_directories('include'),
)
# Export as dependency
crest_inc = crest_lib.private_dir_include()
crest_dep = declare_dependency(
link_with: crest_lib,
include_directories: crest_inc,
dependencies: exe_deps,
)
# Create executable target
crest_exe = executable(
meson.project_name(),
sources: prog,
dependencies: crest_dep,
install: install,
link_language: 'fortran',
)
# add the testsuite separate meson.build
#subdir('testsuite') #has to be filled with tests, not availabel yet