mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-12-07 00:02:12 -05:00
add compile_commands.json to .gitignore
We set CMAKE_EXPORT_COMPILE_COMMANDS=ON so the compilation database is automatically exported to the build directory. However, many language servers expect this file to be in the project root directory, so a common post-build step is to: ```shell $ ln -s <build-directory>/compile_commands.json ``` This PR enables developers to do this without having to worry about accidentally commiting a symlink file. Signed-off-by: carson radtke <nosrac925@gmail.com>
This commit is contained in:
parent
6f0c46187c
commit
7b6d9f3326
1
.gitignore
vendored
1
.gitignore
vendored
@ -35,4 +35,5 @@ __pycache__
|
|||||||
.pytest_cache
|
.pytest_cache
|
||||||
.cache
|
.cache
|
||||||
.CMake/a.out
|
.CMake/a.out
|
||||||
|
compile_commands.json
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user