Skip to content

Commit

Permalink
Commit current work (and begin versionning it)
Browse files Browse the repository at this point in the history
  • Loading branch information
SirLynix committed Jun 2, 2023
1 parent 84566ff commit 1c4aa32
Show file tree
Hide file tree
Showing 29 changed files with 2,177 additions and 25 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# http://editorconfig.org/

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{hpp,inl,cpp,lua}]
indent_size = 4
indent_style = tab

[*.html]
indent_size = 4
indent_style = space
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Auto detect text files and perform LF normalization
* text=auto
*.patch -text
thirdparty/* linguist-vendored
174 changes: 149 additions & 25 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,156 @@
# Prerequisites
*.d
# xmake-related files
.xmake/*
.vs/*
.vscode/*
CMakeLists.txt
Makefile
vs*/*
vsxmake*/*

# Coverage
coverage.out

# TSOM binaries
bin/*
!bin/resources
!bin/resources/*

# Build files
build/*

# TSOM libraries
lib/*

# TSOM package
package/*

# Documentation
doc

# Codeblocks
*.save-failed
build/**/*.cbp
build/**/*.cbp
build/**/*.cbTemp
build/**/*.cscope_file_list
build/**/*.depend
build/**/*.layout
build/**/*.workspace

# CodeLite
build/**/*.project

# GMake
build/**/*.make
build/**/*.d

# Visual Studio
build/**/*.pdb
build/**/*.filters
build/**/*.vcxproj
build/**/*.tlog
build/**/*.sln
build/**/*.vcxprojResolveAssemblyReference.cache
build/**/*.nativecodeanalysis.all.xml
build/**/*.nativecodeanalysis.xml
build/**/*.VC.opendb
build/**/*.VC.db*
build/**/*.json
build/**/*.sqlite
build/**/*.FileListAbsolute.txt
build/**/*.recipe

# Compiled Object files
*.slo
*.lo
*.o
*.obj
build/**/*.slo
build/**/*.lo
build/**/*.o
build/**/*.obj
build/**/*.obj.enc

# Compiled Dynamic libraries
build/**/*.so

# Compiled Static libraries
build/**/*.lai
build/**/*.la

# Object files
build/**/*.o

# Precompiled Headers
*.gch
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

[Tt]est[Rr]esult
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.idb
*.ilk
*.meta
*.pch
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
*.vssscc
.builds

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

# Fortran module files
*.mod
*.smod
*.log
*.scc
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

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

# Executables
*.exe
*.out
*.app
# Visual Studio profiler
*.psess
*.vsp

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/

*.[Rr]e[Ss]harper

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
Loading

0 comments on commit 1c4aa32

Please sign in to comment.