-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
13 lines (9 loc) · 1016 Bytes
/
meson_options.txt
File metadata and controls
13 lines (9 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-FileCopyrightText: 2022 - 2023 Peter Urban, Ghent University
#
# SPDX-License-Identifier: CC0-1.0
option('build_pythonmodule', type : 'feature', value : 'enabled', description : 'build the python module (requires pybind11)', yield : true)
option('python_path', type : 'string', value : 'python3', description : 'name of the python version or path to the python module (e.g. python3.10 or /usr/local/bin/python3.10m)', yield : true)
option('build_tests', type : 'feature', value : 'enabled', description : 'build tests (requires catch2)', yield : true)
option('pydev_install', type : 'feature', value : 'disabled', description : 'On install: Link to python package src directories, rather than installing the souce to hdd.', yield : true)
option('dynamic_boost', type : 'feature', value : 'disabled', description : 'Use dynamic boost libraries instead of static ones', yield : true)
option('force_openmp', type : 'feature', value : 'disabled', description : 'Force the use of openmp', yield : true)