Skip to content
Snippets Groups Projects
.gitignore 389 B
Newer Older
  • Learn to ignore specific revisions
  • **/.settings
    **/.cproject
    **/.project
    
    **/Debug*
    
    **/Release*
    
    
    # Compiled Object files
    *.slo
    *.lo
    *.o
    
    # Compiled Dynamic libraries
    *.so
    *.dylib
    
    # Compiled Static libraries
    *.lai
    *.la
    *.a
    
    # vim backup and swap files
    
    
    # Doxygen documentation
    Doxyfile
    documentation/*
    
    
    Jan Trávníček's avatar
    Jan Trávníček committed
    lib/*
    
    **/bin
    **/obj
    
    Jan Trávníček's avatar
    Jan Trávníček committed
    **/lib
    **/test-bin
    **/test-obj