From ef8fbfbb534f9fb897c9b5fe4e609a16d1589662 Mon Sep 17 00:00:00 2001 From: Szymon P Date: Sun, 11 Jan 2026 21:30:57 +0100 Subject: [PATCH] added clangd thing --- src/compile_commands.json | 74 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/compile_commands.json diff --git a/src/compile_commands.json b/src/compile_commands.json new file mode 100644 index 0000000..afaf30c --- /dev/null +++ b/src/compile_commands.json @@ -0,0 +1,74 @@ +[ + { + "file": "main.cpp", + "arguments": [ + "g++", + "-std=c++17", + "-Wall", + "-Wextra", + "-O2", + "-I", + ".", + "-c", + "main.cpp", + "-o", + "build/main.o" + ], + "directory": "/home/szymon/Dokumenty/kodowanie/blog/src", + "output": "build/main.o" + }, + { + "file": "config/config.cpp", + "arguments": [ + "g++", + "-std=c++17", + "-Wall", + "-Wextra", + "-O2", + "-I", + ".", + "-c", + "config/config.cpp", + "-o", + "build/config/config.o" + ], + "directory": "/home/szymon/Dokumenty/kodowanie/blog/src", + "output": "build/config/config.o" + }, + { + "file": "format/format.cpp", + "arguments": [ + "g++", + "-std=c++17", + "-Wall", + "-Wextra", + "-O2", + "-I", + ".", + "-c", + "format/format.cpp", + "-o", + "build/format/format.o" + ], + "directory": "/home/szymon/Dokumenty/kodowanie/blog/src", + "output": "build/format/format.o" + }, + { + "file": "markdown/markdown.cpp", + "arguments": [ + "g++", + "-std=c++17", + "-Wall", + "-Wextra", + "-O2", + "-I", + ".", + "-c", + "markdown/markdown.cpp", + "-o", + "build/markdown/markdown.o" + ], + "directory": "/home/szymon/Dokumenty/kodowanie/blog/src", + "output": "build/markdown/markdown.o" + } +] \ No newline at end of file