Skip to content

Commit 1044a16

Browse files
authored
Merge branch 'master' into ofcolor-vector
2 parents d14da6a + cc5b398 commit 1044a16

621 files changed

Lines changed: 32808 additions & 17793 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trim_trailing_whitespace = true
1313
charset = utf-8
1414

1515
[*.sh]
16-
indent_style = tab
16+
indent_style = space
1717
indent_size = 4
1818
tab_width = 4
1919
insert_final_newline = true

.gitattributes

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
# This is based on the Github .gitattributes templates
2-
# Set default behaviour, in case users don't have core.autocrlf set.
32
* text=auto
43

5-
# Explicitly declare text files we want to always be normalized and converted
6-
# to native line endings on checkout.
4+
# Explicitly declare text files to normalize
75
*.cpp text
86
*.h text
97
*.mm text
108

11-
# Declare files that will always have CRLF line endings on checkout.
9+
# Files with CRLF line endings for Windows
1210
*.sln text eol=crlf
1311
*.vcxproj* text eol=crlf
1412
.appveyor.yml text eol=crlf
1513
*.bat text eol=crlf
14+
*.props text eol=crlf
15+
*.filters text eol=crlf
1616

17-
# Denote all files that are truly binary and should not be modified.
17+
# Files with LF line endings for Unix-like systems
18+
*.sh text eol=lf
19+
20+
# Binary files (no EOL normalization)
1821
*.png binary
1922
*.jpg binary
2023

.github/disabled/build-android.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ jobs:
2222
cfg:
2323
- {target: android, gradle_target: compileArm7DebugSources}
2424
- {target: android, gradle_target: compileX86DebugSources}
25+
- {target: android, gradle_target: compileArm64DebugSources}
26+
- {target: android, gradle_target: compileX8664DebugSources}
2527

2628
env:
2729
TARGET: ${{matrix.cfg.target}}
2830
GRADLE_TARGET: ${{matrix.cfg.gradle_target}}
29-
NDK_DIR: android-ndk-r15c
31+
NDK_DIR: android-ndk-r23b
3032
steps:
3133
- uses: actions/checkout@v3
3234
- name: Cache projectGenerator folder
@@ -37,7 +39,7 @@ jobs:
3739
- name: Cache NDK
3840
uses: actions/cache@v3
3941
with:
40-
path: '~/android-ndk-r15c'
42+
path: '~/android-ndk-r23b'
4143
key: ${{ runner.os }}-android-ndk-${{matrix.cfg.gradle_target}}
4244
- name: install
4345
run: ./scripts/ci/$TARGET/install.sh
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)