diff options
| author | 2024-09-09 16:17:08 -0400 | |
|---|---|---|
| committer | 2024-09-09 16:17:08 -0400 | |
| commit | 521316d09b39a410d7e797efa176371e31a3a57e (patch) | |
| tree | bb0c6bb5a9df1280fceb483983e2328ee87c0da0 /compile_commands.json | |
| parent | bugfix to inline backspace and delete on multiline buffer (diff) | |
add aliasing to init.lua
Diffstat (limited to 'compile_commands.json')
| -rw-r--r-- | compile_commands.json | 58 |
1 files changed, 55 insertions, 3 deletions
diff --git a/compile_commands.json b/compile_commands.json index 5ba9a1e..1edddc2 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -5,14 +5,66 @@ "-DLUSH_VERSION=\"0.0.1\"", "-DDEBUG", "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/hashmap.o", + "lib/hashmap/hashmap.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/lib/hashmap/hashmap.c", + "output": "/home/lanceb/lush/obj/Debug/hashmap.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/history.o", + "src/history.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/history.c", + "output": "/home/lanceb/lush/obj/Debug/history.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/lua_api.o", + "src/lua_api.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/lua_api.c", + "output": "/home/lanceb/lush/obj/Debug/lua_api.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", "-g", "-c", "-o", "obj/Debug/lush.o", "src/lush.c" ], - "directory": "/home/lanceb/projects/lush", - "file": "/home/lanceb/projects/lush/src/lush.c", - "output": "/home/lanceb/projects/lush/obj/Debug/lush.o" + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/lush.c", + "output": "/home/lanceb/lush/obj/Debug/lush.o" } ] |
