From dad6dc77433e661b54458978cb888fd38ae15a97 Mon Sep 17 00:00:00 2001 From: Nikita Langer Date: Mon, 6 Apr 2026 22:13:26 +0200 Subject: Initial commit --- compile_commands.json | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 compile_commands.json (limited to 'compile_commands.json') diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..bf58f9c --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,65 @@ +[ + { + "file": "drw.c", + "arguments": [ + "cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-I/usr/X11R6/include", + "-I/usr/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"2.2\"", + "-DSRCDIR=\"/home/nikita/.config/suckless/vxwm\"", + "-DXINERAMA", + "drw.c" + ], + "directory": "/home/nikita/.config/suckless/vxwm" + }, + { + "file": "vxwm.c", + "arguments": [ + "cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-I/usr/X11R6/include", + "-I/usr/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"2.2\"", + "-DSRCDIR=\"/home/nikita/.config/suckless/vxwm\"", + "-DXINERAMA", + "vxwm.c" + ], + "directory": "/home/nikita/.config/suckless/vxwm" + }, + { + "file": "util.c", + "arguments": [ + "cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-I/usr/X11R6/include", + "-I/usr/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"2.2\"", + "-DSRCDIR=\"/home/nikita/.config/suckless/vxwm\"", + "-DXINERAMA", + "util.c" + ], + "directory": "/home/nikita/.config/suckless/vxwm" + } +] \ No newline at end of file -- cgit