From 91da624fe1665f3ddb3216ebb8a56a982074228d Mon Sep 17 00:00:00 2001 From: Louie S Date: Thu, 12 Oct 2023 15:27:26 -0400 Subject: First commit --- compile_commands.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..6723db5 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,26 @@ +[ + { + "directory": "/home/louie/Development/projects/tower_of_hanoi_curses/src", + "arguments": [ + "gcc", + "-DHAVE_CONFIG_H", + "-I.", + "-I..", + "-D_GNU_SOURCE", + "-D_DEFAULT_SOURCE", + "-g", + "-O2", + "-MT", + "tower_of_hanoi_curses-main.o", + "-MD", + "-MP", + "-MF", + ".deps/tower_of_hanoi_curses-main.Tpo", + "-c", + "-o", + "tower_of_hanoi_curses-main.o", + "main.c" + ], + "file": "main.c" + } +] -- cgit