We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7334f0 commit b2cb8bcCopy full SHA for b2cb8bc
src/sage/meson.build
@@ -54,7 +54,23 @@ ecm_bin = find_program(
54
disabler: true,
55
)
56
conf_data.set('SAGE_ECMBIN', ecm_bin.full_path())
57
-
+nauty_bins_prefix = ''
58
+nauty_progs = [
59
+ 'directg',
60
+ 'gentourng',
61
+ 'geng',
62
+ 'genbg',
63
+ 'gentreeg',
64
+ 'genktreeg',
65
+ 'genposetg',
66
+]
67
+foreach prog : nauty_progs
68
+ nauty_check = find_program(prog, required: false)
69
+ if nauty_check.found()
70
+ nauty_bins_prefix = nauty_check.full_path().replace(prog, '')
71
+ endif
72
+endforeach
73
+conf_data.set('SAGE_NAUTY_BINS_PREFIX', nauty_bins_prefix)
74
# Packages that need no processing and can be installed directly
75
no_processing = [
76
'cli',
0 commit comments