build: move compile_commands.json to build directory

This commit is contained in:
2023-03-19 20:33:27 +00:00
parent 4785c767e4
commit 44702bec5f
2 changed files with 2 additions and 2 deletions

View File

@@ -55,6 +55,6 @@ for line in make_output_lines:
os.system('make')
out_file = open('.config/compile_commands.json', 'w')
out_file = open('build/compile_commands.json', 'w')
json.dump(compile_db, out_file, indent=4)