feat(debug-utils): added framework for shared debug util tools

This commit is contained in:
2025-04-10 09:05:30 -04:00
parent 08b68c22de
commit 41460acacf
21 changed files with 465 additions and 1799 deletions

View File

@@ -43,11 +43,18 @@ subdir('build-config')
subdir('assets/static')
if get_option('build_debug_utils')
subdir('utils/debugUtils')
endif
# Build the main project
subdir('src')
if get_option('build_tests')
subdir('tests')
endif
# Build the utilities
subdir('utils')
if get_option('build_post_run_utils')
subdir('utils')
endif