Skip to content
This repository was archived by the owner on Apr 1, 2024. It is now read-only.

Commit f3f53db

Browse files
committed
first commit
0 parents  commit f3f53db

3,579 files changed

Lines changed: 841019 additions & 0 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.

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
container: devkitpro/devkita64:latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
13+
- name: Build
14+
run: |
15+
make -j$(nproc)
16+
- uses: actions/upload-artifact@master
17+
with:
18+
name: splatsave.nro
19+
path: splatsave.nro

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Compiled Dynamic libraries
15+
*.so
16+
*.dylib
17+
*.dll
18+
19+
# Fortran module files
20+
*.mod
21+
*.smod
22+
23+
# Compiled Static libraries
24+
*.lai
25+
*.la
26+
*.a
27+
*.lib
28+
29+
# Executables
30+
splatsave
31+
*.exe
32+
*.out
33+
*.app
34+
35+
# Switch
36+
build/
37+
*.elf
38+
*.nacp
39+
*.nro
40+
*.nso
41+
*.pfs0
42+
43+
# Test files
44+
*.dat
45+
*.enc
46+
*.dec
47+
*.bak
48+
*.zip
49+
testsave/
50+
51+
# MacOS files
52+
.DS_Store
53+
/*.txt
54+
/*.json
55+
56+
# IDA files
57+
*.i64
58+
*.id0
59+
*.id1
60+
*.nam
61+
*.til

.vscode/c_cpp_properties.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "NX",
5+
"includePath": [
6+
"/opt/devkitpro/devkitA64/aarch64-none-elf/include/**",
7+
"/opt/devkitpro/libnx/include/**",
8+
"/opt/devkitpro/portlibs/switch/include/**",
9+
"${workspaceFolder}/source/**",
10+
"${workspaceFolder}/include/**",
11+
"${workspaceFolder}/libs/mbedtls/library/**",
12+
"${workspaceFolder}/libs/json/include/**",
13+
"${workspaceFolder}/libs/borealis/library/include/**",
14+
"${workspaceFolder}/libs/mbedtls/include/**",
15+
"${workspaceFolder}/libs/borealis/library/lib/extern/yoga/src",
16+
"${workspaceFolder}/libs/borealis/library/lib/extern/tweeny/include",
17+
"${workspaceFolder}/libs/borealis/library/lib/extern/fmt/include"
18+
],
19+
"defines": [
20+
"SWITCH",
21+
"__SWITCH__",
22+
"BOREALIS_RESOURCES",
23+
"__DEBUG__",
24+
"__aarch64__"
25+
],
26+
"compilerPath": "/opt/devkitpro/devkitA64/bin/aarch64-none-elf-g++",
27+
"cStandard": "c11",
28+
"cppStandard": "c++17",
29+
"intelliSenseMode": "gcc-x64",
30+
"configurationProvider": "ms-vscode.cmake-tools"
31+
}
32+
],
33+
"version": 4
34+
}

.vscode/settings.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"files.associations": {
3+
"cuchar": "cpp",
4+
"format": "cpp",
5+
"array": "cpp",
6+
"atomic": "cpp",
7+
"bit": "cpp",
8+
"*.tcc": "cpp",
9+
"bitset": "cpp",
10+
"cctype": "cpp",
11+
"chrono": "cpp",
12+
"clocale": "cpp",
13+
"cmath": "cpp",
14+
"codecvt": "cpp",
15+
"compare": "cpp",
16+
"concepts": "cpp",
17+
"condition_variable": "cpp",
18+
"cstdarg": "cpp",
19+
"cstddef": "cpp",
20+
"cstdint": "cpp",
21+
"cstdio": "cpp",
22+
"cstdlib": "cpp",
23+
"cstring": "cpp",
24+
"ctime": "cpp",
25+
"cwchar": "cpp",
26+
"cwctype": "cpp",
27+
"deque": "cpp",
28+
"forward_list": "cpp",
29+
"list": "cpp",
30+
"map": "cpp",
31+
"set": "cpp",
32+
"string": "cpp",
33+
"unordered_map": "cpp",
34+
"unordered_set": "cpp",
35+
"vector": "cpp",
36+
"exception": "cpp",
37+
"algorithm": "cpp",
38+
"functional": "cpp",
39+
"iterator": "cpp",
40+
"memory": "cpp",
41+
"memory_resource": "cpp",
42+
"numeric": "cpp",
43+
"optional": "cpp",
44+
"random": "cpp",
45+
"ratio": "cpp",
46+
"string_view": "cpp",
47+
"system_error": "cpp",
48+
"tuple": "cpp",
49+
"type_traits": "cpp",
50+
"utility": "cpp",
51+
"fstream": "cpp",
52+
"initializer_list": "cpp",
53+
"iomanip": "cpp",
54+
"iosfwd": "cpp",
55+
"iostream": "cpp",
56+
"istream": "cpp",
57+
"limits": "cpp",
58+
"mutex": "cpp",
59+
"new": "cpp",
60+
"numbers": "cpp",
61+
"ostream": "cpp",
62+
"semaphore": "cpp",
63+
"sstream": "cpp",
64+
"stdexcept": "cpp",
65+
"stop_token": "cpp",
66+
"streambuf": "cpp",
67+
"thread": "cpp",
68+
"cinttypes": "cpp",
69+
"typeinfo": "cpp",
70+
"valarray": "cpp",
71+
"variant": "cpp",
72+
"csignal": "cpp",
73+
"span": "cpp",
74+
"filesystem": "cpp",
75+
"future": "cpp"
76+
},
77+
"cmake.configureOnOpen": false,
78+
}

0 commit comments

Comments
 (0)