diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CMakeLists.txt | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 98ec98ea72..b36b55cef5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ compile_commands.json /.idea/ # Build/deps dir -/build/ /.deps/ /tmp/ /.clangd/ diff --git a/CMakeLists.txt b/CMakeLists.txt index e129901f92..01462ab233 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,11 @@ include(InstallHelpers) include(PreventInTreeBuilds) include(Util) +if(NOT PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR) + # Auto-create a .gitignore in the specified "build" directory. + file(GENERATE OUTPUT .gitignore CONTENT "*") +endif() + #------------------------------------------------------------------------------- # User settings #------------------------------------------------------------------------------- |