Minor improvements to SConstruct and README

This commit is contained in:
karl 2021-03-20 17:39:41 +01:00
parent c4a9ee1fab
commit d3d259897d
2 changed files with 4 additions and 1 deletions

View File

@ -13,3 +13,5 @@ Build and run scripts for VSCodium are provided as well.
## Credits
Catch2 for unit tests: https://github.com/catchorg/Catch2
Inspired by TheCherno's Hazel Engine series: https://github.com/TheCherno/Hazel

View File

@ -27,7 +27,8 @@ env.Install('test/bin/lib/', gedeng)
# -------------------------------------------------------------------------------
# Test environment setup
testEnv = Environment(tools=['default'])
testEnv = Environment(tools=['default', 'compilation_db'])
# No need to call env.CompilationDatabase() on this one, it is now included automatically
testEnv.Append(CPPPATH=['include/', 'test/'])