We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3502929 commit 1e08970Copy full SHA for 1e08970
1 file changed
tools/scripts/examples_compile.py
@@ -64,6 +64,8 @@ def build(project):
64
commands = []
65
if ":build:scons" in project_cfg:
66
commands.append( ("scons build --cache-show --random", "SCons") )
67
+ if ":build:compilation_db" in project_cfg:
68
+ commands.append( ("scons compilation_db", "CompilationDB (via SCons)") )
69
if ":build:make" in project_cfg and not is_running_on_windows:
70
commands.append( ("make build", "Make") )
71
elif ":build:cmake" in project_cfg and not is_running_on_windows:
0 commit comments