add cppcodec header library for base64

This commit is contained in:
2024-06-13 18:27:24 -06:00
committed by Celtic Minstrel
parent 20f762f031
commit b37c8e8532
3 changed files with 8 additions and 0 deletions

View File

@@ -355,6 +355,10 @@ if not env.GetOption('clean'):
# If building the tests, make sure Catch2 is cloned
if 'test' in targets and not path.exists('deps/Catch2/README.md'):
subprocess.call(["git", "submodule", "update", "--init", "deps/Catch2"])
# Make sure cppcodec is cloned
if not path.exists('deps/cppcodec/README.md'):
subprocess.call(["git", "submodule", "update", "--init", "deps/cppcodec"])
# On Linux, build TGUI from the subtree if necessary
if platform == 'posix':