Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add compile_commands.json to .gitignore #1754

Merged
merged 1 commit into from
Apr 16, 2024

Commits on Apr 14, 2024

  1. 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>
    carsonRadtke committed Apr 14, 2024
    Configuration menu
    Copy the full SHA
    b313b00 View commit details
    Browse the repository at this point in the history