-
Notifications
You must be signed in to change notification settings - Fork 5
/
configure.py
executable file
·86 lines (74 loc) · 2 KB
/
configure.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
86
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from os import system
def readIntInRange( low, high ):
while True:
try:
n = int( raw_input('Votre choix: ') )
if n >= low and n <= high:
return n
except Exception:
pass
PATTERN = """#!/usr/bin/env sh
mkdir -p %(MODE)s
cd %(MODE)s
cmake %(OPTIONS)s ..
make
cd ..
"""
options=[
("Choisissez votre mode de compilation :",
["release", "debug"],
["MODE", "BUILD_FLAGS"],
[
["release", "debug"],
["", "-DCMAKE_BUILD_TYPE=Debug"]
]
),
("Voulez-vous utiliser OpenMP avec CPT ?",
["oui", "non"],
["CPT_OMP"],
[
["-DCPT_WITH_OMP=1", ""]
]
),
("Voulez-vous utiliser OpenMP avec DAE ?",
["oui", "non"],
["DAE_OMP"],
[
["-DDAE_WITH_OMP=1", ""]
]
)
]
OPTIONS = "%(CPT_OMP)s %(DAE_OMP)s %(BUILD_FLAGS)s"
responses = {}
for question in options:
print question[0]
i = 1
for answer in question[1]:
print i, ")", answer
i += 1
choice = readIntInRange( 1, i-1 ) - 1
for i in range(len(question[2])):
responses[ question[2][i] ] = question[3][i][choice]
responses[ "OPTIONS" ] = OPTIONS % responses
del responses['CPT_OMP']
del responses['DAE_OMP']
del responses['BUILD_FLAGS']
print "\n\nScript bash correspondant : "
print PATTERN % responses
print "\nVoulez vous enregistrer le script dans un fichier ou bien l'exécuter directement ?"
print "1) Enregistrer"
print "2) Exécuter"
print "3) Ne rien faire et quitter"
choice = readIntInRange( 1, 3 )
if choice == 1:
filename = raw_input("Choisissez un nom de fichier: (build.sh par défaut)")
if filename == "":
filename = "build.sh"
script = file( filename, 'w' )
script.write( PATTERN % responses )
script.close()
print "N'oubliez pas d'effectuer un chmod +x pour pouvoir lancer le script."
elif choice == 2:
system( PATTERN % responses )