Added compile_commands.json

This commit is contained in:
Dreaded_X 2021-01-15 15:45:24 +01:00
parent 399dbef684
commit 1ae8c35ac6
2 changed files with 52 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
.build/
.clangd
.cache/
compile_commands.json

52
compile_commands.json Normal file
View File

@ -0,0 +1,52 @@
[
{
"arguments": [
"/usr/bin/g++",
"-c",
"-Wall",
"-Wextra",
"-std=c++20",
"-Og",
"-g",
"-DCPU_Z80_STATIC",
"-DCPU_Z80_USE_LOCAL_HEADER",
"-flto",
"-Iinclude",
"-I/usr/include/SDL2",
"-D_REENTRANT",
"-Ilibs/z80/API/emulation/CPU",
"-Ilibs/z/API",
"src/main.cpp",
"-o",
".build/main.o"
],
"directory": "/home/tim/Projects/z80/tools/emulator",
"file": "/home/tim/Projects/z80/tools/emulator/src/main.cpp",
"output": "/home/tim/Projects/z80/tools/emulator/.build/main.o"
},
{
"arguments": [
"/usr/bin/g++",
"-c",
"-Wall",
"-Wextra",
"-std=c++20",
"-Og",
"-g",
"-DCPU_Z80_STATIC",
"-DCPU_Z80_USE_LOCAL_HEADER",
"-flto",
"-Iinclude",
"-I/usr/include/SDL2",
"-D_REENTRANT",
"-Ilibs/z80/API/emulation/CPU",
"-Ilibs/z/API",
"libs/z80/sources/Z80.c",
"-o",
".build/Z80.o"
],
"directory": "/home/tim/Projects/z80/tools/emulator",
"file": "/home/tim/Projects/z80/tools/emulator/libs/z80/sources/Z80.c",
"output": "/home/tim/Projects/z80/tools/emulator/.build/Z80.o"
}
]