-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit current work (and begin versionning it)
- Loading branch information
Showing
29 changed files
with
2,177 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.