├── .astylerc ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMake ├── COPYING-CMAKE-SCRIPTS ├── DistCommon.cmake ├── DistLinux.cmake ├── DistOSX.cmake ├── DistWindows.cmake ├── FindLibsamplerate.cmake ├── FindQt5PlatformSupport.cmake └── FindQuazip.cmake ├── CMakeLists.txt ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── backendplugin.cpp ├── backendplugin.h ├── consumer │ ├── CMakeLists.txt │ ├── audiobuffer.cpp │ ├── audiobuffer.h │ ├── audiooutput.cpp │ ├── audiooutput.h │ ├── videooutput.cpp │ ├── videooutput.h │ ├── videooutputnode.cpp │ └── videooutputnode.h ├── control │ ├── CMakeLists.txt │ ├── controloutput.cpp │ ├── controloutput.h │ ├── gameconsole.cpp │ └── gameconsole.h ├── core │ ├── CMakeLists.txt │ ├── core.cpp │ ├── core.h │ ├── libretro.h │ ├── libretrocore.cpp │ ├── libretrocore.h │ ├── libretroloader.cpp │ ├── libretroloader.h │ ├── libretrorunner.cpp │ ├── libretrorunner.h │ ├── libretrosymbols.cpp │ ├── libretrosymbols.h │ ├── libretrovariable.cpp │ ├── libretrovariable.h │ ├── libretrovariableforwarder.cpp │ ├── libretrovariableforwarder.h │ ├── libretrovariablemodel.cpp │ └── libretrovariablemodel.h ├── input │ ├── CMakeLists.txt │ ├── SDL_GameControllerDB │ │ ├── LICENSE │ │ ├── README.md │ │ └── gamecontrollerdb.txt │ ├── controllerdb.qrc │ ├── gamepadstate.cpp │ ├── gamepadstate.h │ ├── globalgamepad.cpp │ ├── globalgamepad.h │ ├── keyboardstate.cpp │ ├── keyboardstate.h │ ├── mousestate.cpp │ ├── mousestate.h │ ├── remapper.cpp │ ├── remapper.h │ ├── remappermodel.cpp │ ├── remappermodel.h │ ├── sdlmanager.cpp │ ├── sdlmanager.h │ ├── sdlunloader.cpp │ └── sdlunloader.h ├── pipeline │ ├── CMakeLists.txt │ ├── node.cpp │ ├── node.h │ └── pipelinecommon.h └── util │ ├── CMakeLists.txt │ ├── logging.cpp │ ├── logging.h │ ├── microtimer.cpp │ ├── microtimer.h │ ├── osxhelper.mm │ ├── phoenixwindow.cpp │ ├── phoenixwindow.h │ ├── phoenixwindownode.cpp │ └── phoenixwindownode.h ├── externals └── cmake-modules │ ├── .gitattributes │ ├── AboutTheseModules.cmake │ ├── BoostTestTargets.cmake │ ├── BoostTestTargetsDynamic.h │ ├── BoostTestTargetsIncluded.h │ ├── BoostTestTargetsStatic.h │ ├── BundleOSGPlugins.cmake │ ├── BundleOSGRuntime.cmake │ ├── BundleVRJ22Runtime.cmake │ ├── BundleVRJ30Runtime.cmake │ ├── CheckMacHIDAPI.cmake │ ├── CheckMacHIDAPI.cpp │ ├── CheckVersion.cmake │ ├── CleanDirectoryList.cmake │ ├── CleanLibraryList.cmake │ ├── CompatibilityVersionFile-BASIC.cmake.in │ ├── CompatibilityVersionFile-CXX_ABI.cmake.in │ ├── CompatibilityVersionFile-CXX_LAYOUT.cmake.in │ ├── CompatibilityVersionFile-C_ABI.cmake.in │ ├── CopyImportedTarget.cmake │ ├── CopyResourcesToBuildTree.cmake │ ├── CppcheckTargets.cmake │ ├── CreateDashboardScripts.cmake │ ├── CreateImportedTarget.cmake │ ├── CreateLaunchers.cmake │ ├── DashboardScript.cmake.in │ ├── DoxygenTargets.cmake │ ├── DoxygenTargets.doxyfile.in │ ├── EnableExtraCompilerWarnings.cmake │ ├── EnableProfiling.cmake │ ├── FileCopyTargets.cmake │ ├── FindALUT.cmake │ ├── FindAdrienne.cmake │ ├── FindBluez.cmake │ ├── FindCPPDOM.cmake │ ├── FindColibriApi.cmake │ ├── FindDCubed.cmake │ ├── FindDirectShow.cmake │ ├── FindDirectX.cmake │ ├── FindFlagpoll.cmake │ ├── FindGDB.cmake │ ├── FindGHOST.cmake │ ├── FindGLUI.cmake │ ├── FindGLUT.cmake │ ├── FindGMTL.cmake │ ├── FindGPM.cmake │ ├── FindGadgeteer12.cmake │ ├── FindGadgeteer20.cmake │ ├── FindGlove5DT.cmake │ ├── FindHIDAPI.cmake │ ├── FindIDLJ.cmake │ ├── FindInterSense.cmake │ ├── FindJCCL12.cmake │ ├── FindJCCL14.cmake │ ├── FindJsonCpp.cmake │ ├── FindJtTk.cmake │ ├── FindJtTk.stampkey.cmake.in │ ├── FindLAPACKLibs.cmake │ ├── FindLibFreespace.cmake │ ├── FindLibusb1.cmake │ ├── FindLuabind.cmake │ ├── FindLyX.cmake │ ├── FindMacHID.cmake │ ├── FindMarkdown.cmake │ ├── FindOVR.cmake │ ├── FindOpenCV1.cmake │ ├── FindOpenHaptics.cmake │ ├── FindParasolid.cmake │ ├── FindPerformer.cmake │ ├── FindPerlModules.cmake │ ├── FindQVRPN.cmake │ ├── FindSDL2.cmake │ ├── FindSonix12.cmake │ ├── FindSonix14.cmake │ ├── FindTR1.cmake │ ├── FindTooN.cmake │ ├── FindTooNtag.cmake │ ├── FindTweek12.cmake │ ├── FindTweek14.cmake │ ├── FindVPR20.cmake │ ├── FindVPR22.cmake │ ├── FindVPS.cmake │ ├── FindVRJ22.cmake │ ├── FindVRJ30.cmake │ ├── FindVRJOGL22.cmake │ ├── FindVRJOGL30.cmake │ ├── FindVRJuggler.cmake │ ├── FindVRJuggler22.cmake │ ├── FindVRJuggler30.cmake │ ├── FindVRPN.cmake │ ├── FindViewPoint.cmake │ ├── FindVirtuoseAPI.cmake │ ├── FindVirtuoseVPP.cmake │ ├── FindWayland.cmake │ ├── FindWiiSCAAT.cmake │ ├── FindWiiUse.cmake │ ├── FindWinHID.cmake │ ├── FindWindowsSDK.cmake │ ├── FindXrandr.cmake │ ├── Findargp.cmake │ ├── Findcppcheck.cmake │ ├── Findcppcheck.cpp │ ├── Findcppunit.cmake │ ├── Findcutil.cmake │ ├── Finddb2pdf.cmake │ ├── FindosgLua.cmake │ ├── Findquatlib.cmake │ ├── Findudev.cmake │ ├── GenerateCompatibilityVersionFile.cmake │ ├── GetCPUDetails.cmake │ ├── GetCompilerInfoString.cmake │ ├── GetDefineString.cmake │ ├── GetDefineString.cpp.in │ ├── GetDirectoryList.cmake │ ├── GetFileList.cmake │ ├── GetForceIncludeDefinitions.cmake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ ├── GetMSVCVersion.cmake │ ├── GetSubprojectStatus.cmake │ ├── LICENSE_1_0.txt │ ├── Licensing.cmake │ ├── ListCombinations.cmake │ ├── ListFilter.cmake │ ├── LuaTargets.cmake │ ├── MSVCMultipleProcessCompile.cmake │ ├── MSVCStaticRuntime.cmake │ ├── MSVCVerboseLinking.cmake │ ├── MapImportedReleaseVariants.cmake │ ├── MinGWSearchPathExtras.cmake │ ├── OptionRequires.cmake │ ├── PlatformDefinitions.cmake │ ├── PrefixListGlob.cmake │ ├── ProgramFilesGlob.cmake │ ├── README.markdown │ ├── ResetConfigurations.cmake │ ├── SearchProgramFilesForOpenSceneGraph.cmake │ ├── SetDefaultBuildType.cmake │ ├── SplitLibraryList.cmake │ ├── StampSourcesWithVersion.cmake │ ├── StampSourcesWithVersion.sed.in │ ├── TCHARWorkaround.cmake │ ├── UseBackportedModules.cmake │ ├── UseFolders.cmake │ ├── UseMarkdown.cmake │ ├── UseTR1.cmake │ ├── WarningDev.cmake │ ├── cmake-2.8.0-modules │ ├── features │ │ └── SelectLibraryConfigurations.cmake │ └── osg │ │ ├── FindOpenSceneGraph.cmake │ │ ├── FindOpenThreads.cmake │ │ ├── Findosg.cmake │ │ ├── FindosgAnimation.cmake │ │ ├── FindosgDB.cmake │ │ ├── FindosgFX.cmake │ │ ├── FindosgGA.cmake │ │ ├── FindosgIntrospection.cmake │ │ ├── FindosgManipulator.cmake │ │ ├── FindosgParticle.cmake │ │ ├── FindosgProducer.cmake │ │ ├── FindosgShadow.cmake │ │ ├── FindosgSim.cmake │ │ ├── FindosgTerrain.cmake │ │ ├── FindosgText.cmake │ │ ├── FindosgUtil.cmake │ │ ├── FindosgViewer.cmake │ │ ├── FindosgVolume.cmake │ │ ├── FindosgWidget.cmake │ │ └── Findosg_functions.cmake │ ├── cmake-2.8.1-modules │ └── patchctestbug10149 │ │ ├── CTest.cmake │ │ ├── CTestScriptMode.cmake │ │ └── CTestTargets.cmake │ ├── cmake-2.8.12-modules │ ├── CMakePackageConfigHelpers.cmake │ └── CMakeParseArguments.cmake │ ├── cmake-2.8.3-modules │ ├── FixWinInstallPrefix.cmake │ └── autoinclude.cmake │ ├── cmake-2.8.4-modules │ ├── ImproveEclipseGCCErrors.cmake │ ├── autoinclude.cmake │ └── boost │ │ └── FindBoost.cmake │ ├── cmake-3.2.0-modules │ └── FindGit.cmake │ ├── cmake-3.3.0-modules │ └── WriteCompilerDetectionHeader.cmake │ ├── cmake-4.0.0-modules │ ├── RequireOutOfSourceBuild.cmake │ ├── autoinclude.cmake │ └── from-ITK-3.18.0 │ │ └── FindFFTW.cmake │ ├── export-to-directory.sh │ ├── ghost-fake-stl │ ├── alloc.h │ ├── hash_map.h │ ├── iostream.h │ ├── list.h │ ├── pair.h │ ├── set.h │ └── vector.h │ ├── launcher-templates │ ├── genericlauncher.cmd.in │ ├── genericlauncher.sh.in │ ├── launcher.env.cmd.in │ ├── launcher.env.sh.in │ ├── perconfig.vcproj.user.in │ ├── perconfig.vcxproj.user.in │ ├── targetlauncher.cmd.in │ ├── targetlauncher.sh.in │ ├── vcproj.user.in │ └── vcxproj.user.in │ ├── module-docs │ ├── AllModuleDependencies.dot │ ├── AllModuleDependencies.jpg │ ├── AllModuleDependencies.pdf │ ├── AllModuleDependencies.png │ ├── Example-FindMyPackage-UsingImportedTargets.cmake │ ├── Example-FindMyPackage.cmake │ └── Example-FindMySimplePackage.cmake │ ├── module-help.html │ ├── module-help.txt │ ├── nested_targets │ ├── DCubed │ │ ├── CMakeLists.txt │ │ ├── d3ew_p │ │ │ └── CMakeLists.txt │ │ └── d3ew_scene │ │ │ └── CMakeLists.txt │ ├── OpenHaptics │ │ └── CMakeLists.txt │ ├── Parasolid │ │ └── CMakeLists.txt │ └── cutil │ │ └── CMakeLists.txt │ ├── package-licensing │ ├── Boost.cmake │ ├── Eigen.cmake │ ├── FLTK.cmake │ ├── Lua.cmake │ ├── LuaBind.cmake │ ├── OpenHapticsAcademicEdition.cmake │ ├── OpenSceneGraph.cmake │ ├── PhysicalModelingUtils.cmake │ ├── Qt-LGPL.cmake │ ├── VPS.cmake │ ├── VRJuggLua.cmake │ ├── VRJuggler.cmake │ ├── VirtuoseAPI.cmake │ └── osgLua.cmake │ ├── package │ ├── fixupbundle.cmake.in │ └── macosx │ │ ├── VRJuggler22BundleInfo.plist.in │ │ └── VRJuggler30BundleInfo.plist.in │ ├── update-help.sh │ └── workarounds │ ├── mac-alut-framework │ └── AL │ │ └── alut.h │ ├── mac-gl │ └── GL │ │ ├── gl.h │ │ ├── glui.h │ │ └── glut.h │ ├── mac-openal │ └── AL │ │ ├── al.h │ │ └── alc.h │ └── tchar │ └── tchar.h ├── frontend ├── CMakeLists.txt ├── MacOSXBundleInfo.plist.in ├── cpp │ ├── CMakeLists.txt │ ├── cmdlineargs.cpp │ ├── cmdlineargs.h │ ├── debughandler.h │ ├── frontendcommon.h │ ├── library │ │ ├── CMakeLists.txt │ │ ├── cuefile.cpp │ │ ├── cuefile.h │ │ ├── database │ │ │ ├── CMakeLists.txt │ │ │ ├── databasehelper.cpp │ │ │ └── databasehelper.h │ │ ├── fileinfo │ │ │ ├── CMakeLists.txt │ │ │ ├── archivefile.cpp │ │ │ ├── archivefile.h │ │ │ ├── cryptohash.cpp │ │ │ └── cryptohash.h │ │ ├── gamelauncher.cpp │ │ ├── gamelauncher.h │ │ ├── imagecacher.cpp │ │ ├── imagecacher.h │ │ ├── librarytypes.cpp │ │ ├── librarytypes.h │ │ ├── model │ │ │ ├── CMakeLists.txt │ │ │ ├── coremodel.cpp │ │ │ ├── coremodel.h │ │ │ ├── databasesettings.cpp │ │ │ ├── databasesettings.h │ │ │ ├── sqlcolumn.cpp │ │ │ ├── sqlcolumn.h │ │ │ ├── sqlmodel.cpp │ │ │ ├── sqlmodel.h │ │ │ ├── sqlthreadedmodel.cpp │ │ │ └── sqlthreadedmodel.h │ │ ├── phxpaths.cpp │ │ ├── phxpaths.h │ │ └── scanner │ │ │ ├── CMakeLists.txt │ │ │ ├── gamehasher.cpp │ │ │ ├── gamehasher.h │ │ │ ├── gamehashercontroller.cpp │ │ │ ├── gamehashercontroller.h │ │ │ ├── mapfunctor.cpp │ │ │ ├── mapfunctor.h │ │ │ ├── reducefunctor.cpp │ │ │ ├── reducefunctor.h │ │ │ ├── scannerutil.cpp │ │ │ └── scannerutil.h │ ├── logging.cpp │ ├── logging.h │ └── main.cpp ├── metadata │ ├── libretro.sqlite │ └── openvgdb.sqlite ├── phoenix.desktop ├── phoenix.icns ├── phoenix.ico ├── phoenix.png ├── phoenix.rc ├── python │ ├── updateDatabases.py │ └── updaters │ │ ├── __init__.py │ │ ├── retrieve_core_info.py │ │ ├── sqlTableUpdater.py │ │ ├── sqldatabase.py │ │ ├── updateCore.py │ │ ├── updateExtension.py │ │ ├── updateFirmware.py │ │ ├── updateOpenVGDBToSystem.py │ │ ├── updateRomHeaderOffset.py │ │ ├── updateSystem.py │ │ └── updateSystemToCore.py ├── qml │ ├── Emulator │ │ ├── ActionBar.qml │ │ └── qmldir │ ├── Frontend │ │ ├── GameGrid.qml │ │ ├── Library.qml │ │ ├── LibraryHeader.qml │ │ ├── MinimizedGame.qml │ │ ├── Sidebar.qml │ │ ├── SystemList.qml │ │ ├── WindowControls.qml │ │ └── qmldir │ ├── Phoenix │ │ ├── Emulator.qml │ │ ├── Frontend.qml │ │ ├── Phoenix.qml │ │ └── TestUI.qml │ ├── Settings │ │ ├── InputSettings.qml │ │ ├── LibretroCoreSettings.qml │ │ ├── SettingsList.qml │ │ └── qmldir │ ├── Theme │ │ ├── PhxComboBox.qml │ │ ├── PhxGridView.qml │ │ ├── PhxListView.qml │ │ ├── PhxScrollBar.qml │ │ ├── PhxScrollView.qml │ │ ├── PhxSearchBar.qml │ │ ├── PhxTheme.qml │ │ └── qmldir │ ├── Util │ │ ├── MarqueeText.qml │ │ ├── PhoenixLogo.qml │ │ └── qmldir │ └── assets │ │ ├── add.svg │ │ ├── add2.svg │ │ ├── bg-t.jpg │ │ ├── bg.svg │ │ ├── bg0.png │ │ ├── bg1.svg │ │ ├── bg2.png │ │ ├── bg3.png │ │ ├── blur.svg │ │ ├── close.svg │ │ ├── collections.svg │ │ ├── core.svg │ │ ├── default.svg │ │ ├── del.svg │ │ ├── fullscreen.svg │ │ ├── games.png │ │ ├── games.svg │ │ ├── minimize.svg │ │ ├── noartwork.png │ │ ├── pause.svg │ │ ├── pause2.svg │ │ ├── phoenix.png │ │ ├── play.svg │ │ ├── playstationController.svg │ │ ├── resume.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── shutdown.svg │ │ ├── suspend.svg │ │ ├── swap.svg │ │ ├── systems │ │ ├── All.svg │ │ ├── Game Boy Advance.svg │ │ ├── Game Boy Color.svg │ │ ├── Game Boy.svg │ │ ├── Nintendo 64.svg │ │ ├── Nintendo DS.svg │ │ ├── Nintendo.svg │ │ ├── Sony PlayStation.svg │ │ └── Super Nintendo.svg │ │ ├── tv.svg │ │ ├── tv169.svg │ │ ├── tv43.svg │ │ ├── volume.svg │ │ ├── volumehalf.svg │ │ ├── volumemute.svg │ │ └── window.svg └── qt.conf └── version.h.in /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/.astylerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /CMake/DistCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/DistCommon.cmake -------------------------------------------------------------------------------- /CMake/DistLinux.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMake/DistOSX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/DistOSX.cmake -------------------------------------------------------------------------------- /CMake/DistWindows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/DistWindows.cmake -------------------------------------------------------------------------------- /CMake/FindLibsamplerate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/FindLibsamplerate.cmake -------------------------------------------------------------------------------- /CMake/FindQt5PlatformSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/FindQt5PlatformSupport.cmake -------------------------------------------------------------------------------- /CMake/FindQuazip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMake/FindQuazip.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/.travis.yml -------------------------------------------------------------------------------- /backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/CMakeLists.txt -------------------------------------------------------------------------------- /backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/LICENSE -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/backendplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/backendplugin.cpp -------------------------------------------------------------------------------- /backend/backendplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/backendplugin.h -------------------------------------------------------------------------------- /backend/consumer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/CMakeLists.txt -------------------------------------------------------------------------------- /backend/consumer/audiobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/audiobuffer.cpp -------------------------------------------------------------------------------- /backend/consumer/audiobuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/audiobuffer.h -------------------------------------------------------------------------------- /backend/consumer/audiooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/audiooutput.cpp -------------------------------------------------------------------------------- /backend/consumer/audiooutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/audiooutput.h -------------------------------------------------------------------------------- /backend/consumer/videooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/videooutput.cpp -------------------------------------------------------------------------------- /backend/consumer/videooutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/videooutput.h -------------------------------------------------------------------------------- /backend/consumer/videooutputnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/videooutputnode.cpp -------------------------------------------------------------------------------- /backend/consumer/videooutputnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/consumer/videooutputnode.h -------------------------------------------------------------------------------- /backend/control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/control/CMakeLists.txt -------------------------------------------------------------------------------- /backend/control/controloutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/control/controloutput.cpp -------------------------------------------------------------------------------- /backend/control/controloutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/control/controloutput.h -------------------------------------------------------------------------------- /backend/control/gameconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/control/gameconsole.cpp -------------------------------------------------------------------------------- /backend/control/gameconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/control/gameconsole.h -------------------------------------------------------------------------------- /backend/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/CMakeLists.txt -------------------------------------------------------------------------------- /backend/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/core.cpp -------------------------------------------------------------------------------- /backend/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/core.h -------------------------------------------------------------------------------- /backend/core/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretro.h -------------------------------------------------------------------------------- /backend/core/libretrocore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrocore.cpp -------------------------------------------------------------------------------- /backend/core/libretrocore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrocore.h -------------------------------------------------------------------------------- /backend/core/libretroloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretroloader.cpp -------------------------------------------------------------------------------- /backend/core/libretroloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretroloader.h -------------------------------------------------------------------------------- /backend/core/libretrorunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrorunner.cpp -------------------------------------------------------------------------------- /backend/core/libretrorunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrorunner.h -------------------------------------------------------------------------------- /backend/core/libretrosymbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrosymbols.cpp -------------------------------------------------------------------------------- /backend/core/libretrosymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrosymbols.h -------------------------------------------------------------------------------- /backend/core/libretrovariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariable.cpp -------------------------------------------------------------------------------- /backend/core/libretrovariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariable.h -------------------------------------------------------------------------------- /backend/core/libretrovariableforwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariableforwarder.cpp -------------------------------------------------------------------------------- /backend/core/libretrovariableforwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariableforwarder.h -------------------------------------------------------------------------------- /backend/core/libretrovariablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariablemodel.cpp -------------------------------------------------------------------------------- /backend/core/libretrovariablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/core/libretrovariablemodel.h -------------------------------------------------------------------------------- /backend/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/CMakeLists.txt -------------------------------------------------------------------------------- /backend/input/SDL_GameControllerDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/SDL_GameControllerDB/LICENSE -------------------------------------------------------------------------------- /backend/input/SDL_GameControllerDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/SDL_GameControllerDB/README.md -------------------------------------------------------------------------------- /backend/input/SDL_GameControllerDB/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/SDL_GameControllerDB/gamecontrollerdb.txt -------------------------------------------------------------------------------- /backend/input/controllerdb.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/controllerdb.qrc -------------------------------------------------------------------------------- /backend/input/gamepadstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/gamepadstate.cpp -------------------------------------------------------------------------------- /backend/input/gamepadstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/gamepadstate.h -------------------------------------------------------------------------------- /backend/input/globalgamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/globalgamepad.cpp -------------------------------------------------------------------------------- /backend/input/globalgamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/globalgamepad.h -------------------------------------------------------------------------------- /backend/input/keyboardstate.cpp: -------------------------------------------------------------------------------- 1 | #include "keyboardstate.h" 2 | -------------------------------------------------------------------------------- /backend/input/keyboardstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/keyboardstate.h -------------------------------------------------------------------------------- /backend/input/mousestate.cpp: -------------------------------------------------------------------------------- 1 | #include "mousestate.h" 2 | -------------------------------------------------------------------------------- /backend/input/mousestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/mousestate.h -------------------------------------------------------------------------------- /backend/input/remapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/remapper.cpp -------------------------------------------------------------------------------- /backend/input/remapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/remapper.h -------------------------------------------------------------------------------- /backend/input/remappermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/remappermodel.cpp -------------------------------------------------------------------------------- /backend/input/remappermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/remappermodel.h -------------------------------------------------------------------------------- /backend/input/sdlmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/sdlmanager.cpp -------------------------------------------------------------------------------- /backend/input/sdlmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/sdlmanager.h -------------------------------------------------------------------------------- /backend/input/sdlunloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/sdlunloader.cpp -------------------------------------------------------------------------------- /backend/input/sdlunloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/input/sdlunloader.h -------------------------------------------------------------------------------- /backend/pipeline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/pipeline/CMakeLists.txt -------------------------------------------------------------------------------- /backend/pipeline/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/pipeline/node.cpp -------------------------------------------------------------------------------- /backend/pipeline/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/pipeline/node.h -------------------------------------------------------------------------------- /backend/pipeline/pipelinecommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/pipeline/pipelinecommon.h -------------------------------------------------------------------------------- /backend/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/CMakeLists.txt -------------------------------------------------------------------------------- /backend/util/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/logging.cpp -------------------------------------------------------------------------------- /backend/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/logging.h -------------------------------------------------------------------------------- /backend/util/microtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/microtimer.cpp -------------------------------------------------------------------------------- /backend/util/microtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/microtimer.h -------------------------------------------------------------------------------- /backend/util/osxhelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/osxhelper.mm -------------------------------------------------------------------------------- /backend/util/phoenixwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/phoenixwindow.cpp -------------------------------------------------------------------------------- /backend/util/phoenixwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/phoenixwindow.h -------------------------------------------------------------------------------- /backend/util/phoenixwindownode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/phoenixwindownode.cpp -------------------------------------------------------------------------------- /backend/util/phoenixwindownode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/backend/util/phoenixwindownode.h -------------------------------------------------------------------------------- /externals/cmake-modules/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/.gitattributes -------------------------------------------------------------------------------- /externals/cmake-modules/AboutTheseModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/AboutTheseModules.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/BoostTestTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BoostTestTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/BoostTestTargetsDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BoostTestTargetsDynamic.h -------------------------------------------------------------------------------- /externals/cmake-modules/BoostTestTargetsIncluded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BoostTestTargetsIncluded.h -------------------------------------------------------------------------------- /externals/cmake-modules/BoostTestTargetsStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BoostTestTargetsStatic.h -------------------------------------------------------------------------------- /externals/cmake-modules/BundleOSGPlugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BundleOSGPlugins.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/BundleOSGRuntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BundleOSGRuntime.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/BundleVRJ22Runtime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BundleVRJ22Runtime.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/BundleVRJ30Runtime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/BundleVRJ30Runtime.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CheckMacHIDAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CheckMacHIDAPI.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CheckMacHIDAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CheckMacHIDAPI.cpp -------------------------------------------------------------------------------- /externals/cmake-modules/CheckVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CheckVersion.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CleanDirectoryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CleanDirectoryList.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CleanLibraryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CleanLibraryList.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CompatibilityVersionFile-BASIC.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CompatibilityVersionFile-BASIC.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/CompatibilityVersionFile-CXX_ABI.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CompatibilityVersionFile-CXX_ABI.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/CompatibilityVersionFile-CXX_LAYOUT.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CompatibilityVersionFile-CXX_LAYOUT.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/CompatibilityVersionFile-C_ABI.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CompatibilityVersionFile-C_ABI.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/CopyImportedTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CopyImportedTarget.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CopyResourcesToBuildTree.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CopyResourcesToBuildTree.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CppcheckTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CppcheckTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CreateDashboardScripts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CreateDashboardScripts.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CreateImportedTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CreateImportedTarget.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/CreateLaunchers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/CreateLaunchers.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/DashboardScript.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/DashboardScript.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/DoxygenTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/DoxygenTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/DoxygenTargets.doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/DoxygenTargets.doxyfile.in -------------------------------------------------------------------------------- /externals/cmake-modules/EnableExtraCompilerWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/EnableExtraCompilerWarnings.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/EnableProfiling.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/EnableProfiling.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FileCopyTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FileCopyTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindALUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindALUT.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindAdrienne.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindAdrienne.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindBluez.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindBluez.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindCPPDOM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindCPPDOM.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindColibriApi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindColibriApi.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindDCubed.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindDCubed.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindDirectShow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindDirectShow.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindDirectX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindDirectX.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindFlagpoll.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindFlagpoll.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGDB.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGHOST.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGHOST.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGLUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGLUI.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGLUT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGLUT.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGMTL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGMTL.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGPM.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGadgeteer12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGadgeteer12.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGadgeteer20.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGadgeteer20.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindGlove5DT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindGlove5DT.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindHIDAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindHIDAPI.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindIDLJ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindIDLJ.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindInterSense.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindInterSense.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindJCCL12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindJCCL12.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindJCCL14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindJCCL14.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindJsonCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindJsonCpp.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindJtTk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindJtTk.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindJtTk.stampkey.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindJtTk.stampkey.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/FindLAPACKLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindLAPACKLibs.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindLibFreespace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindLibFreespace.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindLibusb1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindLibusb1.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindLuabind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindLuabind.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindLyX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindLyX.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindMacHID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindMacHID.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindMarkdown.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindMarkdown.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindOVR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindOVR.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindOpenCV1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindOpenCV1.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindOpenHaptics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindOpenHaptics.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindParasolid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindParasolid.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindPerformer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindPerformer.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindPerlModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindPerlModules.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindQVRPN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindQVRPN.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindSDL2.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindSonix12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindSonix12.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindSonix14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindSonix14.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindTR1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindTR1.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindTooN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindTooN.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindTooNtag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindTooNtag.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindTweek12.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindTweek12.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindTweek14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindTweek14.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVPR20.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVPR20.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVPR22.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVPR22.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVPS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVPS.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJ22.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJ22.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJ30.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJ30.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJOGL22.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJOGL22.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJOGL30.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJOGL30.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJuggler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJuggler.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJuggler22.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJuggler22.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRJuggler30.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRJuggler30.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVRPN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVRPN.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindViewPoint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindViewPoint.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVirtuoseAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVirtuoseAPI.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindVirtuoseVPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindVirtuoseVPP.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindWayland.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindWiiSCAAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindWiiSCAAT.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindWiiUse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindWiiUse.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindWinHID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindWinHID.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindWindowsSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindWindowsSDK.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindXrandr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindXrandr.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findargp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findargp.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findcppcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findcppcheck.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findcppcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findcppcheck.cpp -------------------------------------------------------------------------------- /externals/cmake-modules/Findcppunit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findcppunit.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findcutil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findcutil.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Finddb2pdf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Finddb2pdf.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/FindosgLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/FindosgLua.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findquatlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findquatlib.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/Findudev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Findudev.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GenerateCompatibilityVersionFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GenerateCompatibilityVersionFile.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetCPUDetails.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetCPUDetails.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetCompilerInfoString.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetCompilerInfoString.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetDefineString.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetDefineString.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetDefineString.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetDefineString.cpp.in -------------------------------------------------------------------------------- /externals/cmake-modules/GetDirectoryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetDirectoryList.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetFileList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetFileList.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetForceIncludeDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetForceIncludeDefinitions.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/GetMSVCVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetMSVCVersion.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/GetSubprojectStatus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/GetSubprojectStatus.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/LICENSE_1_0.txt -------------------------------------------------------------------------------- /externals/cmake-modules/Licensing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/Licensing.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/ListCombinations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ListCombinations.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/ListFilter.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ListFilter.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/LuaTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/LuaTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/MSVCMultipleProcessCompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/MSVCMultipleProcessCompile.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/MSVCStaticRuntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/MSVCStaticRuntime.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/MSVCVerboseLinking.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/MSVCVerboseLinking.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/MapImportedReleaseVariants.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/MapImportedReleaseVariants.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/MinGWSearchPathExtras.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/MinGWSearchPathExtras.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/OptionRequires.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/OptionRequires.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/PlatformDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/PlatformDefinitions.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/PrefixListGlob.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/PrefixListGlob.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/ProgramFilesGlob.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ProgramFilesGlob.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/README.markdown -------------------------------------------------------------------------------- /externals/cmake-modules/ResetConfigurations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ResetConfigurations.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/SearchProgramFilesForOpenSceneGraph.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/SearchProgramFilesForOpenSceneGraph.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/SetDefaultBuildType.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/SetDefaultBuildType.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/SplitLibraryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/SplitLibraryList.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/StampSourcesWithVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/StampSourcesWithVersion.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/StampSourcesWithVersion.sed.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/StampSourcesWithVersion.sed.in -------------------------------------------------------------------------------- /externals/cmake-modules/TCHARWorkaround.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/TCHARWorkaround.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/UseBackportedModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/UseBackportedModules.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/UseFolders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/UseFolders.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/UseMarkdown.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/UseMarkdown.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/UseTR1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/UseTR1.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/WarningDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/WarningDev.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindOpenSceneGraph.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindOpenSceneGraph.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindOpenThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindOpenThreads.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/Findosg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/Findosg.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgAnimation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgAnimation.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgDB.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgFX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgFX.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgGA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgGA.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgIntrospection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgIntrospection.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgManipulator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgManipulator.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgParticle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgParticle.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgProducer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgProducer.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgShadow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgShadow.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgSim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgSim.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgTerrain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgTerrain.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgText.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgText.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgUtil.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgViewer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgViewer.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgVolume.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgVolume.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgWidget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/FindosgWidget.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.0-modules/osg/Findosg_functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.0-modules/osg/Findosg_functions.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.12-modules/CMakePackageConfigHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.12-modules/CMakePackageConfigHelpers.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.12-modules/CMakeParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.12-modules/CMakeParseArguments.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.3-modules/FixWinInstallPrefix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.3-modules/FixWinInstallPrefix.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.3-modules/autoinclude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.3-modules/autoinclude.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.4-modules/autoinclude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.4-modules/autoinclude.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-2.8.4-modules/boost/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-2.8.4-modules/boost/FindBoost.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-3.2.0-modules/FindGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-3.2.0-modules/FindGit.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-3.3.0-modules/WriteCompilerDetectionHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-3.3.0-modules/WriteCompilerDetectionHeader.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-4.0.0-modules/RequireOutOfSourceBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-4.0.0-modules/RequireOutOfSourceBuild.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-4.0.0-modules/autoinclude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-4.0.0-modules/autoinclude.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/cmake-4.0.0-modules/from-ITK-3.18.0/FindFFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/cmake-4.0.0-modules/from-ITK-3.18.0/FindFFTW.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/export-to-directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/export-to-directory.sh -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/alloc.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/hash_map.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/iostream.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/list.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/pair.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/set.h -------------------------------------------------------------------------------- /externals/cmake-modules/ghost-fake-stl/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/ghost-fake-stl/vector.h -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/genericlauncher.cmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/genericlauncher.cmd.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/genericlauncher.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/genericlauncher.sh.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/launcher.env.cmd.in: -------------------------------------------------------------------------------- 1 | set @_arg@ 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/launcher.env.sh.in: -------------------------------------------------------------------------------- 1 | export @_arg@ 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/perconfig.vcproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/perconfig.vcproj.user.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/perconfig.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/perconfig.vcxproj.user.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/targetlauncher.cmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/targetlauncher.cmd.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/targetlauncher.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/targetlauncher.sh.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/vcproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/vcproj.user.in -------------------------------------------------------------------------------- /externals/cmake-modules/launcher-templates/vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/launcher-templates/vcxproj.user.in -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/AllModuleDependencies.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/AllModuleDependencies.dot -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/AllModuleDependencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/AllModuleDependencies.jpg -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/AllModuleDependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/AllModuleDependencies.pdf -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/AllModuleDependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/AllModuleDependencies.png -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/Example-FindMyPackage-UsingImportedTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/Example-FindMyPackage-UsingImportedTargets.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/Example-FindMyPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/Example-FindMyPackage.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/module-docs/Example-FindMySimplePackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-docs/Example-FindMySimplePackage.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/module-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-help.html -------------------------------------------------------------------------------- /externals/cmake-modules/module-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/module-help.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/DCubed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/DCubed/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/DCubed/d3ew_p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/DCubed/d3ew_p/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/DCubed/d3ew_scene/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/DCubed/d3ew_scene/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/OpenHaptics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/OpenHaptics/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/Parasolid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/Parasolid/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/nested_targets/cutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/nested_targets/cutil/CMakeLists.txt -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/Boost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/Boost.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/Eigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/Eigen.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/FLTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/FLTK.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/Lua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/Lua.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/LuaBind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/LuaBind.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/OpenHapticsAcademicEdition.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/OpenHapticsAcademicEdition.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/OpenSceneGraph.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/OpenSceneGraph.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/PhysicalModelingUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/PhysicalModelingUtils.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/Qt-LGPL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/Qt-LGPL.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/VPS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/VPS.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/VRJuggLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/VRJuggLua.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/VRJuggler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/VRJuggler.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/VirtuoseAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/VirtuoseAPI.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package-licensing/osgLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package-licensing/osgLua.cmake -------------------------------------------------------------------------------- /externals/cmake-modules/package/fixupbundle.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package/fixupbundle.cmake.in -------------------------------------------------------------------------------- /externals/cmake-modules/package/macosx/VRJuggler22BundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package/macosx/VRJuggler22BundleInfo.plist.in -------------------------------------------------------------------------------- /externals/cmake-modules/package/macosx/VRJuggler30BundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/package/macosx/VRJuggler30BundleInfo.plist.in -------------------------------------------------------------------------------- /externals/cmake-modules/update-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/update-help.sh -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-alut-framework/AL/alut.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-gl/GL/gl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-gl/GL/glui.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-gl/GL/glut.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-openal/AL/al.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/mac-openal/AL/alc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /externals/cmake-modules/workarounds/tchar/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/externals/cmake-modules/workarounds/tchar/tchar.h -------------------------------------------------------------------------------- /frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /frontend/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/cmdlineargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/cmdlineargs.cpp -------------------------------------------------------------------------------- /frontend/cpp/cmdlineargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/cmdlineargs.h -------------------------------------------------------------------------------- /frontend/cpp/debughandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/debughandler.h -------------------------------------------------------------------------------- /frontend/cpp/frontendcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/frontendcommon.h -------------------------------------------------------------------------------- /frontend/cpp/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/library/cuefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/cuefile.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/cuefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/cuefile.h -------------------------------------------------------------------------------- /frontend/cpp/library/database/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/database/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/library/database/databasehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/database/databasehelper.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/database/databasehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/database/databasehelper.h -------------------------------------------------------------------------------- /frontend/cpp/library/fileinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/fileinfo/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/library/fileinfo/archivefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/fileinfo/archivefile.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/fileinfo/archivefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/fileinfo/archivefile.h -------------------------------------------------------------------------------- /frontend/cpp/library/fileinfo/cryptohash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/fileinfo/cryptohash.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/fileinfo/cryptohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/fileinfo/cryptohash.h -------------------------------------------------------------------------------- /frontend/cpp/library/gamelauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/gamelauncher.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/gamelauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/gamelauncher.h -------------------------------------------------------------------------------- /frontend/cpp/library/imagecacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/imagecacher.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/imagecacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/imagecacher.h -------------------------------------------------------------------------------- /frontend/cpp/library/librarytypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/librarytypes.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/librarytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/librarytypes.h -------------------------------------------------------------------------------- /frontend/cpp/library/model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/library/model/coremodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/coremodel.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/model/coremodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/coremodel.h -------------------------------------------------------------------------------- /frontend/cpp/library/model/databasesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/databasesettings.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/model/databasesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/databasesettings.h -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlcolumn.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlcolumn.h -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlmodel.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlmodel.h -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlthreadedmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlthreadedmodel.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/model/sqlthreadedmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/model/sqlthreadedmodel.h -------------------------------------------------------------------------------- /frontend/cpp/library/phxpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/phxpaths.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/phxpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/phxpaths.h -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/gamehasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/gamehasher.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/gamehasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/gamehasher.h -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/gamehashercontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/gamehashercontroller.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/gamehashercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/gamehashercontroller.h -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/mapfunctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/mapfunctor.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/mapfunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/mapfunctor.h -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/reducefunctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/reducefunctor.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/reducefunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/reducefunctor.h -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/scannerutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/scannerutil.cpp -------------------------------------------------------------------------------- /frontend/cpp/library/scanner/scannerutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/library/scanner/scannerutil.h -------------------------------------------------------------------------------- /frontend/cpp/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/logging.cpp -------------------------------------------------------------------------------- /frontend/cpp/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/logging.h -------------------------------------------------------------------------------- /frontend/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/cpp/main.cpp -------------------------------------------------------------------------------- /frontend/metadata/libretro.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/metadata/libretro.sqlite -------------------------------------------------------------------------------- /frontend/metadata/openvgdb.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/metadata/openvgdb.sqlite -------------------------------------------------------------------------------- /frontend/phoenix.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/phoenix.desktop -------------------------------------------------------------------------------- /frontend/phoenix.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/phoenix.icns -------------------------------------------------------------------------------- /frontend/phoenix.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/phoenix.ico -------------------------------------------------------------------------------- /frontend/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/phoenix.png -------------------------------------------------------------------------------- /frontend/phoenix.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/phoenix.rc -------------------------------------------------------------------------------- /frontend/python/updateDatabases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updateDatabases.py -------------------------------------------------------------------------------- /frontend/python/updaters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/__init__.py -------------------------------------------------------------------------------- /frontend/python/updaters/retrieve_core_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/retrieve_core_info.py -------------------------------------------------------------------------------- /frontend/python/updaters/sqlTableUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/sqlTableUpdater.py -------------------------------------------------------------------------------- /frontend/python/updaters/sqldatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/sqldatabase.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateCore.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateExtension.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateFirmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateFirmware.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateOpenVGDBToSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateOpenVGDBToSystem.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateRomHeaderOffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateRomHeaderOffset.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateSystem.py -------------------------------------------------------------------------------- /frontend/python/updaters/updateSystemToCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/python/updaters/updateSystemToCore.py -------------------------------------------------------------------------------- /frontend/qml/Emulator/ActionBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Emulator/ActionBar.qml -------------------------------------------------------------------------------- /frontend/qml/Emulator/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Emulator/qmldir -------------------------------------------------------------------------------- /frontend/qml/Frontend/GameGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/GameGrid.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/Library.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/Library.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/LibraryHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/LibraryHeader.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/MinimizedGame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/MinimizedGame.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/Sidebar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/Sidebar.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/SystemList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/SystemList.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/WindowControls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/WindowControls.qml -------------------------------------------------------------------------------- /frontend/qml/Frontend/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Frontend/qmldir -------------------------------------------------------------------------------- /frontend/qml/Phoenix/Emulator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Phoenix/Emulator.qml -------------------------------------------------------------------------------- /frontend/qml/Phoenix/Frontend.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Phoenix/Frontend.qml -------------------------------------------------------------------------------- /frontend/qml/Phoenix/Phoenix.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Phoenix/Phoenix.qml -------------------------------------------------------------------------------- /frontend/qml/Phoenix/TestUI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Phoenix/TestUI.qml -------------------------------------------------------------------------------- /frontend/qml/Settings/InputSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Settings/InputSettings.qml -------------------------------------------------------------------------------- /frontend/qml/Settings/LibretroCoreSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Settings/LibretroCoreSettings.qml -------------------------------------------------------------------------------- /frontend/qml/Settings/SettingsList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Settings/SettingsList.qml -------------------------------------------------------------------------------- /frontend/qml/Settings/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Settings/qmldir -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxComboBox.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxGridView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxGridView.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxListView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxListView.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxScrollBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxScrollBar.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxScrollView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxScrollView.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxSearchBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxSearchBar.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/PhxTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/PhxTheme.qml -------------------------------------------------------------------------------- /frontend/qml/Theme/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Theme/qmldir -------------------------------------------------------------------------------- /frontend/qml/Util/MarqueeText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Util/MarqueeText.qml -------------------------------------------------------------------------------- /frontend/qml/Util/PhoenixLogo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Util/PhoenixLogo.qml -------------------------------------------------------------------------------- /frontend/qml/Util/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/Util/qmldir -------------------------------------------------------------------------------- /frontend/qml/assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/add.svg -------------------------------------------------------------------------------- /frontend/qml/assets/add2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/add2.svg -------------------------------------------------------------------------------- /frontend/qml/assets/bg-t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg-t.jpg -------------------------------------------------------------------------------- /frontend/qml/assets/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg.svg -------------------------------------------------------------------------------- /frontend/qml/assets/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg0.png -------------------------------------------------------------------------------- /frontend/qml/assets/bg1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg1.svg -------------------------------------------------------------------------------- /frontend/qml/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg2.png -------------------------------------------------------------------------------- /frontend/qml/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/bg3.png -------------------------------------------------------------------------------- /frontend/qml/assets/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/blur.svg -------------------------------------------------------------------------------- /frontend/qml/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/close.svg -------------------------------------------------------------------------------- /frontend/qml/assets/collections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/collections.svg -------------------------------------------------------------------------------- /frontend/qml/assets/core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/core.svg -------------------------------------------------------------------------------- /frontend/qml/assets/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/default.svg -------------------------------------------------------------------------------- /frontend/qml/assets/del.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/del.svg -------------------------------------------------------------------------------- /frontend/qml/assets/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/fullscreen.svg -------------------------------------------------------------------------------- /frontend/qml/assets/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/games.png -------------------------------------------------------------------------------- /frontend/qml/assets/games.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/games.svg -------------------------------------------------------------------------------- /frontend/qml/assets/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/minimize.svg -------------------------------------------------------------------------------- /frontend/qml/assets/noartwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/noartwork.png -------------------------------------------------------------------------------- /frontend/qml/assets/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/pause.svg -------------------------------------------------------------------------------- /frontend/qml/assets/pause2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/pause2.svg -------------------------------------------------------------------------------- /frontend/qml/assets/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/phoenix.png -------------------------------------------------------------------------------- /frontend/qml/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/play.svg -------------------------------------------------------------------------------- /frontend/qml/assets/playstationController.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/playstationController.svg -------------------------------------------------------------------------------- /frontend/qml/assets/resume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/resume.svg -------------------------------------------------------------------------------- /frontend/qml/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/search.svg -------------------------------------------------------------------------------- /frontend/qml/assets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/settings.svg -------------------------------------------------------------------------------- /frontend/qml/assets/shutdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/shutdown.svg -------------------------------------------------------------------------------- /frontend/qml/assets/suspend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/suspend.svg -------------------------------------------------------------------------------- /frontend/qml/assets/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/swap.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/All.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/All.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Game Boy Advance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Game Boy Advance.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Game Boy Color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Game Boy Color.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Game Boy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Game Boy.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Nintendo 64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Nintendo 64.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Nintendo DS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Nintendo DS.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Nintendo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Nintendo.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Sony PlayStation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Sony PlayStation.svg -------------------------------------------------------------------------------- /frontend/qml/assets/systems/Super Nintendo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/systems/Super Nintendo.svg -------------------------------------------------------------------------------- /frontend/qml/assets/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/tv.svg -------------------------------------------------------------------------------- /frontend/qml/assets/tv169.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/tv169.svg -------------------------------------------------------------------------------- /frontend/qml/assets/tv43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/tv43.svg -------------------------------------------------------------------------------- /frontend/qml/assets/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/volume.svg -------------------------------------------------------------------------------- /frontend/qml/assets/volumehalf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/volumehalf.svg -------------------------------------------------------------------------------- /frontend/qml/assets/volumemute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/volumemute.svg -------------------------------------------------------------------------------- /frontend/qml/assets/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qml/assets/window.svg -------------------------------------------------------------------------------- /frontend/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/frontend/qt.conf -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-phoenix/Phoenix/HEAD/version.h.in --------------------------------------------------------------------------------