Added compile_commands.json
This commit is contained in:
parent
399dbef684
commit
1ae8c35ac6
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
.build/
|
||||
.clangd
|
||||
.cache/
|
||||
compile_commands.json
|
||||
|
|
52
compile_commands.json
Normal file
52
compile_commands.json
Normal 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"
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue
Block a user