On Mittwoch, 16. September 2009, Marius Storm-Olsen wrote:
quoted hunk ↗ jump to hunk
--- a/.gitignore
+++ b/.gitignore
@@ -179,3 +179,14 @@ configure
tags
TAGS
cscope*
+*.obj
+*.lib
+*.sln
+*.suo
+*.ncb
+*.vcproj
+*.user
+*.idb
+*.pdb
+Debug/
+Release/
If I understand correctly, then 'make MSVC=1' still produce *.o files, not
*.obj. But if the VC++ project is used, I expect that the *.obj, *.idb, and
*.pdb end up in Debug/ or Release/ directories. Then why do you need entries
for *.obj, *.idb, and *.pdb?
-- Hannes