diff options
| author | Lion Kortlepel <[email protected]> | 2026-01-14 22:08:55 +0100 |
|---|---|---|
| committer | Lion Kortlepel <[email protected]> | 2026-01-14 22:08:55 +0100 |
| commit | f93efff02151e4a3affa4b2d0031e957fe7553aa (patch) | |
| tree | 806c714926848a98447d4fbc190c76ba891c0fd3 /compile_commands.json | |
| download | queue-f93efff02151e4a3affa4b2d0031e957fe7553aa.tar.zst queue-f93efff02151e4a3affa4b2d0031e957fe7553aa.zip | |
initial commit
Diffstat (limited to 'compile_commands.json')
| -rw-r--r-- | compile_commands.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..e0ef177 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,40 @@ +[ + { + "arguments": [ + "/usr/bin/cc", + "-c", + "-x", + "c", + "-Wall", + "-Wextra", + "-Wpedantic", + "-Werror", + "-ansi", + "-pedantic", + "-DLS_QUEUE_IMPLEMENTATION", + "-Wno-error=pragma-once-outside-header", + "-Wno-pragma-once-outside-header", + "-o", + "queue.o", + "queue.h" + ], + "directory": "/home/lion/src/ls/ls_queue", + "file": "/home/lion/src/ls/ls_queue/queue.h", + "output": "/home/lion/src/ls/ls_queue/queue.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-c", + "queue.o", + "-Itests", + "-I.", + "-o", + "tests/tests", + "tests/tests.c" + ], + "directory": "/home/lion/src/ls/ls_queue", + "file": "/home/lion/src/ls/ls_queue/tests/tests.c", + "output": "/home/lion/src/ls/ls_queue/tests/tests" + } +] |
