From d3d259897d2f075bad043d4246a4335214b71d56 Mon Sep 17 00:00:00 2001 From: karl Date: Sat, 20 Mar 2021 17:39:41 +0100 Subject: [PATCH] Minor improvements to SConstruct and README --- README.md | 2 ++ SConstruct | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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/'])