forked from tblite/tblite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmeson.build
More file actions
179 lines (163 loc) · 5.3 KB
/
Copy pathmeson.build
File metadata and controls
179 lines (163 loc) · 5.3 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# This file is part of tblite.
# SPDX-Identifier: LGPL-3.0-or-later
#
# tblite 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.
#
# tblite 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 tblite. If not, see <https://www.gnu.org/licenses/>.
project(
'tblite',
'fortran',
version: '0.7.0',
license: 'LGPL-3.0-or-later',
meson_version: '>=0.60.0,!=1.8.0',
default_options: [
'buildtype=debugoptimized',
'default_library=both',
],
)
install = not (meson.is_subproject() and get_option('default_library') == 'static')
has_cc = add_languages('c', required: get_option('api') or get_option('python'), native: false)
if get_option('ddx')
has_cxx = add_languages('cpp', required: true, native: false)
endif
# General configuration information
lib_deps = []
inc_dirs = []
subdir('config')
# Collect source of the project
srcs = []
subdir('src')
# Library target
tblite_lib = library(
meson.project_name(),
sources: srcs,
version: meson.project_version(),
dependencies: lib_deps,
include_directories: inc_dirs,
install: install,
link_language: 'fortran',
)
# Export dependency for other projects and test suite
tblite_inc = [include_directories('include'), tblite_lib.private_dir_include()]
tblite_dep = declare_dependency(
link_with: tblite_lib,
include_directories: tblite_inc,
dependencies: lib_deps,
variables: {'includedir': meson.current_source_dir() / 'include'},
)
# Add executable targets
subdir('app')
# Package the license files
tblite_lic = files(
'COPYING',
'COPYING.LESSER',
)
tblite_header = files(
'include/tblite.h',
)
if install
# Distribute the license files in share/licenses/<name>
install_data(
tblite_lic,
install_dir: get_option('datadir')/'licenses'/meson.project_name()
)
install_headers(
tblite_header,
)
install_subdir(
'include/tblite',
install_dir: get_option('includedir'),
)
module_id = meson.project_name() / fc_id + '-' + fc.version()
meson.add_install_script(
find_program(files('config'/'install-mod.py')),
get_option('includedir') / module_id,
)
meson.add_dist_script('config/dist_symlinks.sh')
pkg = import('pkgconfig')
pkg.generate(
tblite_lib,
description: 'Light-weight tight-binding framework',
subdirs: ['', module_id],
)
cmake_data = configuration_data({
'PROJECT_NAME': meson.project_name(),
'PROJECT_VERSION': meson.project_version(),
'PACKAGE_INIT': '',
'CMAKE_INSTALL_PREFIX': get_option('prefix'),
'CMAKE_INSTALL_INCLUDEDIR': get_option('includedir'),
'CMAKE_INSTALL_LIBDIR': get_option('libdir'),
'TBLITE_WITH_API': get_option('api') ? 'ON' : 'OFF',
'TBLITE_WITH_OpenMP': get_option('openmp') ? 'ON' : 'OFF',
'TBLITE_WITH_DDX': get_option('ddx') ? 'ON' : 'OFF',
'TBLITE_WITH_TREXIO': trexio_dep.found() ? 'ON' : 'OFF',
'TBLITE_WITH_HDF5': hdf5_dep.found() ? 'ON' : 'OFF',
'TBLITE_USE_MCTCLIB': mctc_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'TBLITE_USE_MULTICHARGE': multicharge_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'TBLITE_USE_TOMLF': tomlf_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'TBLITE_USE_SDFTD3': sdftd3_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'TBLITE_USE_DFTD4': dftd4_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'TBLITE_USE_DDX': get_option('ddx') and ddx_dep.type_name() != 'internal' ? 'ON' : 'OFF',
'module-dir': module_id,
})
cmake_files = [
configure_file(
input: files('config'/'template-config.cmake'),
output: meson.project_name() + '-config.cmake',
configuration: cmake_data,
),
configure_file(
input: files('config'/'template-targets.cmake'),
output: meson.project_name() + '-targets.cmake',
configuration: cmake_data,
),
files('config'/'cmake'/'Finddftd4.cmake'),
files('config'/'cmake'/'Findmctc-lib.cmake'),
files('config'/'cmake'/'Findmstore.cmake'),
files('config'/'cmake'/'Findmulticharge.cmake'),
files('config'/'cmake'/'Finds-dftd3.cmake'),
files('config'/'cmake'/'Findtoml-f.cmake'),
files('config'/'cmake'/'tblite-utils.cmake'),
]
install_data(
cmake_files,
install_dir: get_option('libdir')/'cmake'/meson.project_name(),
install_tag: 'devel',
)
asciidoc = find_program('asciidoctor', required: false)
if asciidoc.found()
man_srcs = files(
'man/tblite.1.adoc',
'man/tblite-fit.1.adoc',
'man/tblite-run.1.adoc',
'man/tblite-guess.1.adoc',
'man/tblite-param.1.adoc',
'man/tblite-tagdiff.1.adoc',
'man/tblite-tag.5.adoc',
'man/tblite-solvents.7.adoc',
)
foreach man : man_srcs
install_man(
configure_file(
command: [asciidoc, '-b', 'manpage', '@INPUT@', '-o', '@OUTPUT@'],
input: man,
output: '@BASENAME@',
)
)
endforeach
endif
endif
# add the testsuite
subdir('test')
if get_option('python')
subdir('python/tblite')
endif