forked from su2code/SU2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.py
executable file
·85 lines (73 loc) · 3.23 KB
/
meson.py
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
#!/usr/bin/env python3
## \file meson.py
# \brief An extended meson script for setting up the environment and running meson
# \author T. Albring
# \version 7.5.0 "Blackbird"
#
# SU2 Project Website: https://su2code.github.io
#
# The SU2 Project is maintained by the SU2 Foundation
# (http://su2foundation.org)
#
# Copyright 2012-2022, SU2 Contributors (cf. AUTHORS.md)
#
# SU2 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 2.1 of the License, or (at your option) any later version.
#
# SU2 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 SU2. If not, see <http://www.gnu.org/licenses/>.
import sys, os, subprocess, shutil, urllib.request, zipfile
sys.path.append(sys.path[0] + os.path.sep + 'meson_scripts')
from init import init_submodules
from init import remove_file
def build_ninja():
# If we are on windows, we don't need to compile ninja, we just download the executable
if os.name == 'nt':
ninja_exe_url = 'https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-win.zip'
# Try to execute ninja, if it fails, download .exe from github
try:
subprocess.run([sys.path[0] + os.path.sep + 'ninja.exe', '--version'], stdout=subprocess.PIPE)
except OSError:
print ('Downloading ninja ... ')
try:
urllib.request.urlretrieve (ninja_exe_url,'ninja-win.zip')
except:
print(e)
print('Download of ninja executable failed.')
print('Get archive at ' + ninja_exe_url)
print('extract ninja.exe in the source code root folder.')
print('Run meson.py again.')
sys.exit(1)
zipf = zipfile.ZipFile(sys.path[0] + os.path.sep + 'ninja-win.zip')
zipf.extractall(sys.path[0])
remove_file(sys.path[0] + os.path.sep + 'ninja-win.zip')
else:
ninjapath = sys.path[0] + os.path.sep + 'externals' + os.path.sep + 'ninja'
try:
subprocess.run([sys.path[0] + os.path.sep + 'ninja', '--version'], stdout=subprocess.PIPE)
except OSError:
print("ninja executable not found. Building ...")
subprocess.run(['python3', 'configure.py', '--bootstrap'], cwd=ninjapath)
shutil.copy(ninjapath+ os.path.sep + 'ninja', '.')
if __name__ == '__main__':
if sys.version_info[0] < 3:
raise Exception("Script must be run using Python 3")
# Set up the build environment, i.e. clone or download all submodules
init_submodules('auto')
# Build ninja if it cannot be found
build_ninja()
# Add paths for meson and ninja to environment
os.environ["NINJA"] = sys.path[0] + os.path.sep + "ninja"
if os.name == 'nt':
os.environ["NINJA"] = os.environ["NINJA"] + '.exe'
if os.path.exists(sys.path[0] + os.path.sep + 'externals' + os.path.sep + 'meson' + os.path.sep + 'mesonbuild'):
sys.path.insert(0, str(sys.path[0] + os.path.sep + 'externals' +os.path.sep + 'meson'))
from mesonbuild import mesonmain
sys.exit(mesonmain.main())