forked from crest-lab/crest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
56 lines (48 loc) · 1.38 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
# 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: '2.12.0',
meson_version: '>=0.55',
default_options: [
'buildtype=debugoptimized',
],
)
# General configuration information
exe_deps = []
subdir('config')
# Documentation
subdir('docs')
# Collect source of the project
prog = []
srcs = []
subdir('src')
crest_exe = executable(
meson.project_name(),
sources: srcs + prog,
dependencies: exe_deps,
install: true,
link_language: 'fortran',
)
#declare dependencies
crest_inc = []
crest_dep = declare_dependency(
include_directories: crest_inc,
dependencies: exe_deps,
)
# add the testsuite separate meson.build
#subdir('testsuite') #has to be filled with tests, not availabel yet