generated from WerWolv/Tesla-Template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fork libtesla and add hack for hiding the overlay
- Loading branch information
nastys
committed
Mar 11, 2020
1 parent
ebcbf89
commit 96cc1e6
Showing
16 changed files
with
8,132 additions
and
9 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,3 @@ | ||
[submodule "libs/libtesla"] | ||
path = libs/libtesla | ||
url = https://github.com/WerWolv/libtesla | ||
[submodule "Atmosphere-libs"] | ||
path = Atmosphere-libs | ||
url = https://github.com/Atmosphere-NX/Atmosphere-libs.git |
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
Submodule libtesla
deleted from
7671be
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,12 @@ | ||
debug | ||
release | ||
lib | ||
*.bz2 | ||
|
||
example/build/ | ||
|
||
*.elf | ||
|
||
*.nacp | ||
|
||
*.ovl |
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,45 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "DKP Aarch64 Windows", | ||
"includePath": [ | ||
"C:/devkitPro/devkitA64/aarch64-none-elf/include/**", | ||
"C:/devkitPro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**", | ||
"C:/devkitPro/libnx/include/**", | ||
"C:/devkitPro/portlibs/switch/include/**", | ||
"${workspaceFolder}/include/**" | ||
], | ||
"defines": [ | ||
"SWITCH", | ||
"VERSION=\"\"", | ||
"__SWITCH__", | ||
"__aarch64__" | ||
], | ||
"compilerPath": "C:/devkitPro/devkitA64/bin/aarch64-none-elf-g++", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-x64" | ||
}, | ||
{ | ||
"name": "DKP Aarch64 Linux", | ||
"includePath": [ | ||
"/opt/devkitpro/devkitA64/aarch64-none-elf/include/**", | ||
"/opt/devkitpro/devkitA64/lib/gcc/aarch64-none-elf/8.3.0/include/**", | ||
"/opt/devkitpro/libnx/include/**", | ||
"/opt/devkitpro/portlibs/switch/include/**", | ||
"${workspaceFolder}/include/**" | ||
], | ||
"defines": [ | ||
"SWITCH", | ||
"VERSION=\"\"", | ||
"__SWITCH__", | ||
"__aarch64__" | ||
], | ||
"compilerPath": "/opt/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,56 @@ | ||
{ | ||
"files.associations": { | ||
"*.tcc": "cpp", | ||
"algorithm": "cpp", | ||
"array": "cpp", | ||
"atomic": "cpp", | ||
"bit": "cpp", | ||
"cctype": "cpp", | ||
"chrono": "cpp", | ||
"clocale": "cpp", | ||
"cmath": "cpp", | ||
"condition_variable": "cpp", | ||
"cstdarg": "cpp", | ||
"cstddef": "cpp", | ||
"cstdint": "cpp", | ||
"cstdio": "cpp", | ||
"cstdlib": "cpp", | ||
"cstring": "cpp", | ||
"ctime": "cpp", | ||
"cwchar": "cpp", | ||
"cwctype": "cpp", | ||
"deque": "cpp", | ||
"unordered_map": "cpp", | ||
"vector": "cpp", | ||
"exception": "cpp", | ||
"functional": "cpp", | ||
"iterator": "cpp", | ||
"memory": "cpp", | ||
"memory_resource": "cpp", | ||
"numeric": "cpp", | ||
"optional": "cpp", | ||
"random": "cpp", | ||
"ratio": "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", | ||
"mutex": "cpp", | ||
"new": "cpp", | ||
"ostream": "cpp", | ||
"sstream": "cpp", | ||
"stdexcept": "cpp", | ||
"streambuf": "cpp", | ||
"thread": "cpp", | ||
"cinttypes": "cpp", | ||
"typeinfo": "cpp", | ||
"map": "cpp" | ||
} | ||
} |
Oops, something went wrong.