Skip to content

Commit 1221dc7

Browse files
committed
Release 1.2.1
0 parents  commit 1221dc7

File tree

1,387 files changed

+353141
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,387 files changed

+353141
-0
lines changed

.gitattributes

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
* -text
2+
3+
*.h text eol=lf
4+
*.c text eol=lf
5+
*.s text eol=lf
6+
*.S text eol=lf
7+
*.sh text eol=lf
8+
*.json text eol=lf
9+
*.md text eol=lf
10+
*.txt text eol=lf
11+
*.xml text eol=lf
12+
*.cmake text eol=lf
13+
Makefile text eol=lf
14+
Doxyfile text eol=lf
15+
16+
*.clang-format text eol=lf
17+
*.gitignore text eol=lf
18+
19+
*.bat text eol=crlf
20+
21+
*.ewp text eol=crlf
22+
*.eww text eol=crlf
23+
*.icf text eol=crlf
24+
25+
*.uvprojx text eol=crlf
26+
*.uvoptx text eol=crlf
27+
*.scvd text eol=crlf
28+
*.uvmpw text eol=crlf
29+
30+
*.sln text eol=crlf
31+
*.vcxproj text eol=crlf
32+
*.filters text eol=crlf

.gitignore

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Random seed file created by test scripts and sample programs
2+
seedfile
3+
4+
# CMake build artifacts:
5+
CMakeCache.txt
6+
CMakeFiles
7+
CTestTestfile.cmake
8+
cmake_install.cmake
9+
Testing
10+
# CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
11+
*.dir/
12+
# MSVC files generated by CMake:
13+
/*.sln
14+
/*.vcxproj
15+
/*.filters
16+
17+
# Test coverage build artifacts:
18+
Coverage
19+
*.gcno
20+
*.gcda
21+
coverage-summary.txt
22+
23+
# generated by scripts/memory.sh
24+
massif-*
25+
26+
# MSVC build artifacts:
27+
*.exe
28+
*.pdb
29+
*.ilk
30+
*.lib
31+
32+
# Python build artifacts:
33+
*.pyc
34+
35+
# Microsoft CMake extension for Visual Studio Code generates a build directory by default
36+
build/
37+
38+
# Generated documentation:
39+
/apidoc
40+
/docs
41+
42+
# PSA Crypto compliance test repo, cloned by test_psa_compliance.py
43+
#/psa-arch-tests # !!OM
44+
45+
# Editor navigation files:
46+
/GPATH
47+
/GRTAGS
48+
/GSYMS
49+
/GTAGS
50+
/TAGS
51+
/cscope*.out
52+
/tags
53+
54+
# CLion
55+
.idea/*
56+
cmake-build-debug
57+
58+
# MacOS
59+
.DS_Store
60+
61+
# Generated documentation
62+
.pdf
63+
64+
# Visual Studio Code
65+
.vscode/*

0 commit comments

Comments
 (0)