aboutsummaryrefslogtreecommitdiff
path: root/compile_commands.json
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-02-14 12:01:03 -0600
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-02-14 12:01:03 -0600
commitb5b4a5d66deefa3858bedf7bc58e6c96340e829b (patch)
tree4aa42f746be3c6ce409938796ca95175dfd1da86 /compile_commands.json
parent8bd664e467f760db6f689eb9d30c3d685abe6de5 (diff)
major refactor
Diffstat (limited to 'compile_commands.json')
-rw-r--r--compile_commands.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/compile_commands.json b/compile_commands.json
new file mode 100644
index 0000000..d26e416
--- /dev/null
+++ b/compile_commands.json
@@ -0,0 +1,54 @@
+[
+ {
+ "arguments": [
+ "/usr/bin/clang",
+ "-c",
+ "-Iinclude",
+ "-o",
+ "build/cavegen.o",
+ "src/cavegen.c"
+ ],
+ "directory": "/Users/jjanzen/Documents/projects/mapgen",
+ "file": "/Users/jjanzen/Documents/projects/mapgen/src/cavegen.c",
+ "output": "/Users/jjanzen/Documents/projects/mapgen/build/cavegen.o"
+ },
+ {
+ "arguments": [
+ "/usr/bin/clang",
+ "-c",
+ "-Iinclude",
+ "-o",
+ "build/display.o",
+ "src/display.c"
+ ],
+ "directory": "/Users/jjanzen/Documents/projects/mapgen",
+ "file": "/Users/jjanzen/Documents/projects/mapgen/src/display.c",
+ "output": "/Users/jjanzen/Documents/projects/mapgen/build/display.o"
+ },
+ {
+ "arguments": [
+ "/usr/bin/clang",
+ "-c",
+ "-Iinclude",
+ "-o",
+ "build/ht.o",
+ "src/ht.c"
+ ],
+ "directory": "/Users/jjanzen/Documents/projects/mapgen",
+ "file": "/Users/jjanzen/Documents/projects/mapgen/src/ht.c",
+ "output": "/Users/jjanzen/Documents/projects/mapgen/build/ht.o"
+ },
+ {
+ "arguments": [
+ "/usr/bin/clang",
+ "-c",
+ "-Iinclude",
+ "-o",
+ "build/main.o",
+ "main.c"
+ ],
+ "directory": "/Users/jjanzen/Documents/projects/mapgen",
+ "file": "/Users/jjanzen/Documents/projects/mapgen/main.c",
+ "output": "/Users/jjanzen/Documents/projects/mapgen/build/main.o"
+ }
+]