diff options
author | Hakim <hakim.rouatbi@gmail.com> | 2024-08-09 19:32:26 +0200 |
---|---|---|
committer | Hakim <hakim.rouatbi@gmail.com> | 2024-08-09 23:42:38 +0200 |
commit | 400800a86c233d83f7b31391fc1f90a81c8d60d1 (patch) | |
tree | 93810d30ba5227248191b737af9107279ece9cb1 /SConstruct | |
parent | c73ac74c4a44ccfed158b3603f809a24590bac0a (diff) | |
download | redot-engine-400800a86c233d83f7b31391fc1f90a81c8d60d1.tar.gz |
Make sure not to generate the compile_commands.json when not asked
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct index a1f28b1fc6..0ae8f1a387 100644 --- a/SConstruct +++ b/SConstruct @@ -1011,11 +1011,12 @@ if env["vsproj"]: env.vs_incs = [] env.vs_srcs = [] -if env["compiledb"] and env.scons_version < (4, 0, 0): - # Generating the compilation DB (`compile_commands.json`) requires SCons 4.0.0 or later. - print_error("The `compiledb=yes` option requires SCons 4.0 or later, but your version is %s." % scons_raw_version) - Exit(255) -if env.scons_version >= (4, 0, 0): +if env["compiledb"]: + if env.scons_version < (4, 0, 0): + # Generating the compilation DB (`compile_commands.json`) requires SCons 4.0.0 or later. + print_error("The `compiledb=yes` option requires SCons 4.0 or later, but your version is %s." % scons_raw_version) + Exit(255) + env.Tool("compilation_db") env.Alias("compiledb", env.CompilationDatabase()) |