diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-10 10:08:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-10 10:08:22 +0200 |
commit | 049122c99124a3bd6e55fce26d7f6ed7cfea0da8 (patch) | |
tree | a16f5f35f0b621cea2187aeb009ad30d79caf52f | |
parent | 49fe24ef1af838494da646b5ee9ab056fed78e0e (diff) |
Ignore compressed .i and .ii files in bdep-new-generated .gitignore
-rw-r--r-- | bdep/new.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bdep/new.cxx b/bdep/new.cxx index aac8221..6e90b57 100644 --- a/bdep/new.cxx +++ b/bdep/new.cxx @@ -1198,7 +1198,9 @@ cmd_new (cmd_new_options&& o, cli::group_scanner& args) << "*.d" << '\n' << "*.t" << '\n' << "*.i" << '\n' + << "*.i.*" << '\n' << "*.ii" << '\n' + << "*.ii.*" << '\n' << "*.o" << '\n' << "*.obj" << '\n' << "*.so" << '\n' |