ref: bfd8f9757831a19dcf4ed6b8390859f1d893c270
parent: eb221eb3d143ec256df1a7063abfdc1a4708e5e7
parent: 83d7c3547c86c5c93d8f0a9359de45702badd0e8
author: zhilwang <[email protected]>
date: Mon Jun 30 06:05:54 EDT 2014
Merge pull request #1040 from mstorsjo/gitignore-msvc Ignore files generated by MSVC
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
# Object files
*.o
*.obj
+codec/obj
# Dependency files
*.d
@@ -25,6 +26,13 @@
h264dec
h264enc
codec_unittest
+
+# Other files generated by the MSVC compiler
+*.exp
+*.pdb
+
+# Executables built by the MSVC project files
+bin
# External source
gtest
--- /dev/null
+++ b/codec/build/win32/.gitignore
@@ -1,0 +1,12 @@
+# Files generated by Visual Studio 2008
+*.user
+*.ncb
+*.suo
+
+# Files generated by upgrading the project files
+*.vcxproj*
+Backup
+UpgradeLog.htm
+
+# Files generated by Visual Studio 2012
+*.sdf
--- /dev/null
+++ b/codec/processing/build/win32/.gitignore
@@ -1,0 +1,5 @@
+# Files generated by Visual Studio 2008
+*.user
+
+# Files generated by upgrading the project files
+*.vcxproj*