Update to use scons.

This commit is contained in:
2022-11-26 15:04:35 +01:00
parent 3a73fb2c98
commit 9435842db8
70 changed files with 49 additions and 4 deletions

9
SConstruct Normal file
View File

@ -0,0 +1,9 @@
import os
# Setup LaTeX environment
env = Environment()
env.Replace(PDFLATEX="xelatex")
# Run scripts for each language
SConscript("en/SConscript", exports="env")
SConscript("es/SConscript", exports="env")