Skip to content

Commit

Permalink
Merged v2 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
iUltimateLP authored Oct 21, 2021
2 parents 7bc7e0b + f8db4d0 commit 42bd544
Show file tree
Hide file tree
Showing 66 changed files with 28,590 additions and 7,117 deletions.
10 changes: 7 additions & 3 deletions .gitignore
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/
3 changes: 3 additions & 0 deletions .gitmodules
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
36 changes: 36 additions & 0 deletions .vscode/c_cpp_properties.json
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
}
69 changes: 69 additions & 0 deletions .vscode/settings.json
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"
}
}
Loading

0 comments on commit 42bd544

Please sign in to comment.