Skip to content

Commit

Permalink
Separate .gitignore per language, clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Aug 2, 2024
1 parent 9cdbd68 commit b9c6cc8
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 47 deletions.
50 changes: 3 additions & 47 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,6 @@ autom4te.cache
config.log
config.status
config/
CSharp/cpp/quantlib_wrap.cpp
CSharp/cpp/quantlib_wrap.h
CSharp/cpp/build
CSharp/csharp/obj
CSharp/examples/*/bin
CSharp/examples/*/obj
CSharp/.vs/
Java/bin/
Java/quantlib_wrap.cpp
Java/quantlib_wrap.h
Perl/Makefile.quantlib
Perl/QuantLib.bs
Perl/blib/
Perl/pm_to_blib
Perl/quantlib_wrap.cpp
Perl/MYMETA.yml
Perl/MYMETA.json
Python/src/QuantLib/quantlib_wrap.cpp
Python/.cache/
Python/src/QuantLib.egg-info
Python/dist
Python/examples/*.ipynb
Python/examples/.ipynb_checkpoints
R/src/QuantLib.cpp
R/makeRData.Rout
R/src/symbols.rds
R.Rcheck
Ruby/extension.mak
Ruby/quantlib_wrap.cpp

# Build outputs
**/x64/Debug
Expand All @@ -43,13 +14,15 @@ Ruby/quantlib_wrap.cpp
**/bin/*.xml
**/bin/*.manifest

# CLion
# IDEs
.idea
.vscode
cmake-build-debug

# Artifacts created in multiple directories
Makefile
Makefile.in
.build-stamp
testCaseCollection.xml
.deps
.libs
Expand All @@ -58,8 +31,6 @@ testCaseCollection.xml
*.o
*.so
*.dylib
.build-stamp
*.pyc
*.exe
*.dll
*.exp
Expand All @@ -80,18 +51,3 @@ testCaseCollection.xml
*.pch
*.idb
*.ipch

# Outputs
CSharp/csharp/*.cs
CSharp/NQuantLib.dll
Java/QuantLib.jar
Java/*.jnilib
Java/org/
Perl/QuantLib.pm
Python/src/QuantLib/QuantLib.py
Python/build
R/R/QuantLib.R
R/QuantLib.RData

.vscode
**/venv
9 changes: 9 additions & 0 deletions CSharp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
cpp/quantlib_wrap.cpp
cpp/quantlib_wrap.h
csharp/*.cs
NQuantLib.dll
cpp/build
csharp/obj
examples/*/bin
examples/*/obj
.vs/
6 changes: 6 additions & 0 deletions Java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
bin/
quantlib_wrap.cpp
quantlib_wrap.h
QuantLib.jar
*.jnilib
org/
10 changes: 10 additions & 0 deletions Python/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
src/QuantLib/quantlib_wrap.cpp
src/QuantLib/QuantLib.py
src/QuantLib.egg-info
build
dist
examples/*.ipynb
examples/.ipynb_checkpoints
*.pyc
.cache/
**/.venv
6 changes: 6 additions & 0 deletions R/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
src/QuantLib.cpp
makeRData.Rout
src/symbols.rds
Rcheck
R/QuantLib.R
QuantLib.RData

0 comments on commit b9c6cc8

Please sign in to comment.