-
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.
- Loading branch information
Showing
66 changed files
with
28,590 additions
and
7,117 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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# VSCode config folder | ||
.vscode/ | ||
|
||
# Artifact / output folders | ||
build/ | ||
out/ | ||
*.elf | ||
*.nacp | ||
*.nro | ||
|
||
# Frontend | ||
frontend/node_modules/ | ||
frontend/build/ |
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,3 @@ | ||
[submodule "app/lib/borealis"] | ||
path = app/lib/borealis | ||
url = https://github.com/iUltimateLP/borealis |
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,36 @@ | ||
/* | ||
VSCode configuration for development. Notice this assumes that you | ||
a) are running a Windows machine | ||
b) installed devkitPro in it's standard C:/ path | ||
If not, feel free to adjust the paths below so VSCode will pick up the files | ||
*/ | ||
|
||
{ | ||
"configurations": [ | ||
{ | ||
"name": "DKP aarch64", | ||
"includePath": [ | ||
"C:/devkitPro/devkitA64/aarch64-none-elf/include/**", | ||
"C:/devkitPro/devkitA64/lib/gcc/aarch64-none-elf/11.1.0/include/**", | ||
"C:/devkitPro/libnx/include/**", | ||
"C:/devkitPro/portlibs/switch/include/**", | ||
"${workspaceFolder}/app/lib/borealis/**", | ||
"${workspaceFolder}/app/lib/qrcodegen/**", | ||
"${workspaceFolder}/app/lib/json/**" | ||
], | ||
"defines": [ | ||
"SWITCH", | ||
"__SWITCH__", | ||
"__DEBUG__", | ||
"VERSION_STRING=\"N/A\"", | ||
"__BSD_VISIBLE=1", | ||
"_BSD_SOURCE=1" | ||
], | ||
"compilerPath": "C:/devkitPro/devkitA64/bin/aarch64-none-elf-g++", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-x64" | ||
} | ||
], | ||
"version": 4 | ||
} |
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,69 @@ | ||
{ | ||
"files.associations": { | ||
"array": "cpp", | ||
"atomic": "cpp", | ||
"bit": "cpp", | ||
"*.tcc": "cpp", | ||
"cctype": "cpp", | ||
"clocale": "cpp", | ||
"cmath": "cpp", | ||
"cstdarg": "cpp", | ||
"cstddef": "cpp", | ||
"cstdint": "cpp", | ||
"cstdio": "cpp", | ||
"cstdlib": "cpp", | ||
"cstring": "cpp", | ||
"cwchar": "cpp", | ||
"cwctype": "cpp", | ||
"deque": "cpp", | ||
"forward_list": "cpp", | ||
"map": "cpp", | ||
"unordered_map": "cpp", | ||
"vector": "cpp", | ||
"exception": "cpp", | ||
"algorithm": "cpp", | ||
"functional": "cpp", | ||
"iterator": "cpp", | ||
"memory": "cpp", | ||
"memory_resource": "cpp", | ||
"numeric": "cpp", | ||
"optional": "cpp", | ||
"random": "cpp", | ||
"string": "cpp", | ||
"string_view": "cpp", | ||
"system_error": "cpp", | ||
"tuple": "cpp", | ||
"type_traits": "cpp", | ||
"utility": "cpp", | ||
"fstream": "cpp", | ||
"initializer_list": "cpp", | ||
"iosfwd": "cpp", | ||
"istream": "cpp", | ||
"limits": "cpp", | ||
"new": "cpp", | ||
"ostream": "cpp", | ||
"sstream": "cpp", | ||
"stdexcept": "cpp", | ||
"streambuf": "cpp", | ||
"cinttypes": "cpp", | ||
"typeinfo": "cpp", | ||
"valarray": "cpp", | ||
"bitset": "cpp", | ||
"format": "cpp", | ||
"netdb.h": "c", | ||
"ifaddrs.h": "c", | ||
"socket.h": "c", | ||
"chrono": "cpp", | ||
"codecvt": "cpp", | ||
"compare": "cpp", | ||
"concepts": "cpp", | ||
"ctime": "cpp", | ||
"list": "cpp", | ||
"set": "cpp", | ||
"ratio": "cpp", | ||
"iomanip": "cpp", | ||
"numbers": "cpp", | ||
"regex": "cpp", | ||
"variant": "cpp" | ||
} | ||
} |
Oops, something went wrong.