mirror of
https://github.com/uowuo/abaddon.git
synced 2025-03-04 03:03:16 -05:00
7 lines
200 B
Bash
7 lines
200 B
Bash
![]() |
#!/bin/sh
|
||
|
# Use this script to create the compile_commands.json file.
|
||
|
# This is necessary for clangd completion.
|
||
|
|
||
|
cmake . -B build \
|
||
|
-DCMAKE_BUILD_TYPE=Debug \
|
||
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=True
|