build(boost): added auto call to boost dep script

This commit is contained in:
2025-07-29 08:22:31 -04:00
parent e3d7bed39c
commit a9c4a2faff
3 changed files with 79 additions and 29 deletions

View File

@@ -1 +1,10 @@
boost_dep = dependency('boost', version: '>=1.8.0')
if not boost_dep.found()
message('❌ Boost library not found. Note that Boost is a system dependency and must be installed seperatly.')
message('GridFire includes a Boost auto installation script, attempting to run it now (this will require some user input)...')
run_res = run_command('./install.sh', check: true)
boost_dep = dependency('boost', version: '>=1.8.0', required: true)
endif