├── .gitmodules ├── Readme.md └── .gitignore /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Externals/Qt"] 2 | path = Externals/Qt 3 | url = https://github.com/dolphin-emu/ext-win-qt.git 4 | branch = master 5 | shallow = true 6 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # DolphiniOS has moved! 2 | 3 | If you are looking for the latest version of DolphiniOS and its source code, go to the new [dolphin-ios repository](https://github.com/OatmealDome/dolphin-ios). 4 | 5 | If you are looking for the source code for versions 3.2.1 and older, [click here](https://github.com/OatmealDome/dolphin/tree/1780da7bfe5488b420b9cbf265c0b70793cf0d13). 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore image thumbnail files created by windows 2 | Thumbs.db 3 | # Ignore Finder view option files created by OS X 4 | .DS_Store 5 | # Ignore autogenerated source files 6 | Source/Core/Common/scmrev.h 7 | # Ignore files output by build 8 | /[Bb]uild*/ 9 | /[Bb]inary*/ 10 | /obj/ 11 | # Ignore files output by Android cmake build 12 | /Source/Android/app/.cxx/ 13 | /libs/ 14 | # Ignore various files created by visual studio/msbuild 15 | *.ipch 16 | *.opensdf 17 | *.sdf 18 | *.suo 19 | *.vcxproj.user 20 | *.obj 21 | *.tlog 22 | *.VC.opendb 23 | *.VC.db 24 | .vs*/ 25 | /Source/enc_temp_folder/ 26 | # Ignore build info file created by QtCreator 27 | CMakeLists.txt.user 28 | # Ignore files created by posix people 29 | *~ 30 | # Ignore vim swapfiles 31 | *.swp 32 | # Ignore emacs temp files 33 | \#*\# 34 | .\#* 35 | # Ignore kdevelop files/dirs 36 | *.kdev4 37 | # Ignore IDEA/Clion files/dirs 38 | /.idea/ 39 | # Ignore Visual Studio Code's working dir 40 | /.vscode/ 41 | --------------------------------------------------------------------------------