https://github.com/legraina/DynamicNurseScheduler
Raw File
Tip revision: aef751362239e9ade6448f3731a625c29c9a9f0f authored by Antoine Legrain on 25 October 2023, 20:54:55 UTC
Only publish docker image on version tag. (#33)
Tip revision: aef7513
.gitignore
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

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

# Executables
*.exe
*.out
*.app

# cmake definitions
CMakeDefinitionsLists.txt
cmake**

# source files whose changes must remain local
src/main.cpp
src/MyMain.cpp

# binaries and compilation files
bin/*
obj/*
build/*
cmake-build-debug/
cmake-build-release/

# ouput and log files
bashfiles/*
logfiles/*
outfiles/
results/
benchmark/*
*.log

#For eclipse
.cproject*
.project*
formatter*
.metadata/*
.settings/*

# for mac
.fuse*
**.DS_STORE**

# sublime project files
*.sublime-*

# clion files
.idea/
*.plist

# solver files
*.lp*
*.mps*
*.ilp*
back to top