Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.gitattributess and .gitignore for the windows port #2

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# On Windows it is important to keep unix-style line endings in all egs/ files.
egs/** eol=lf

# Windows build files fare better when stored in native Windows CR-LF line
# ending format.
msbuild/*.*proj eol=crlf
msbuild/*.targets eol=crlf
msbuild/*.props eol=crlf
msbuild/*.ps1 eol=crlf

10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.slo
*.lo
*.o
*.obj

# emacs saves
[#]*[#]
Expand All @@ -10,15 +11,24 @@
# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# some weird thing that MacOs creates.
*.dSYM

# Windows executable, symbol and some weird files.
*.exe
*.pdb
*.exp
*.manifest


# /tools/
/tools/ATLAS/
/tools/atlas3.8.3.tar.gz
Expand Down