mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-04 00:02:01 -04:00
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>
40 lines
427 B
Plaintext
40 lines
427 B
Plaintext
# Text editors and IDES
|
|
.idea
|
|
tags
|
|
*.swp
|
|
*~
|
|
.tags*
|
|
|
|
# CMake & testing
|
|
/build*
|
|
/tmp*
|
|
|
|
# MSVC
|
|
.vs
|
|
/out*
|
|
|
|
# CLion
|
|
/cmake-build*
|
|
|
|
# Visual Studio Code
|
|
.vscode
|
|
|
|
# Jetbrains IDEs
|
|
.idea
|
|
|
|
# MacOS
|
|
.DS_Store
|
|
|
|
# Generated by copy_from_upstream.py
|
|
# and update_pqclean_alg_docs.py
|
|
scripts/copy_from_upstream/repos
|
|
scripts/copy_from_upstream/verify_from_upstream
|
|
|
|
# Misc
|
|
__pycache__
|
|
.pytest_cache
|
|
.cache
|
|
.CMake/a.out
|
|
compile_commands.json
|
|
|