From 503cb8c222e87b19eb78784f763f33bc89c955d6 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 11 Aug 2026 20:42:38 +0200 Subject: [PATCH] Add a .gitignore Copied from the .gitignore used by most other Carbon repositories. Without it, the .cmake-build-* folders created via CMakePresets show up as untracked files. --- .gitignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7fc2658 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +### C++ ### +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +binaryCache/ +*.so +*.dylib +*.dll + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class +*.pyc +*.pyd + +### CMake ### +# User generated local cmake configuration +CMakeUserPresets.json + +.cmake-build* +cmake-build*