diff --git a/README.md b/README.md index 3f6fba7..419f158 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file diff --git a/SConstruct b/SConstruct index cf7b535..8a61e2d 100644 --- a/SConstruct +++ b/SConstruct @@ -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/'])