gouchi

Results 383 comments of gouchi

We have a little [documentation](https://docs.libretro.com/development/cores/developing-cores/#add-your-core-to-libretro-infrastructure) about adding a Libretro core to the Libretro CI/CD. So first, the [core info file](https://github.com/audetto/AppleWin/blob/master/source/frontends/libretro/info/applewin_libretro.info) should be submitted to [Libretro super repository](https://github.com/libretro/libretro-super/tree/master/dist/info) then we should...

First all, you should select the platform where the core could be compiled as there are a lot of platforms. I selected some `.gitlab-ci.yml` which are using CMake [1](https://github.com/libretro/arduous/blob/main/.gitlab-ci.yml) [2](https://github.com/libretro/scummvm/blob/master/backends/platform/libretro/.gitlab-ci.yml)...

For now, I put "straightforward" `.gitlab-ci.yml`,we can extend it later on if we need some something specific build options for a platform using for example ``` .core-defs-XXX: extends: .core-defs variables:...

@G-Ray @xade93 Can you confirm it is working using latest update. I confirm it is working on Wayland. I compiled it with `./configure --disable-x11 --disable-qt --enable-wayland` ![ra-wayland-ppsspp](https://github.com/hrydgard/ppsspp/assets/7869503/b1dac92e-83cc-407e-b163-e95289a16ee0) Thank you.

@unknownbrackets @hrydgard I think we can close this issue. Thank you.

Hi, Can you check that you have the file [com.libretro.RetroArch.desktop](https://github.com/libretro/RetroArch/blob/v1.20.0/Makefile#L243) in `/usr/share/applications` or `/usr/local/share/applications` ? Thank you.

That is strange you are missing the desktop file. Can you try to compile RetroArch using ? ``` sudo -i apt update && apt install build-essential git && apt build-dep...

Hi, I made a quick test on Linux Mint 22.1 using Cinnamon Desktop. It seems that if the desktop file is not in `/usr/share/applications` or `~/.local/share/applications` it won't be displayed...

Hi @cristiansoarescck , Desktop file has been updated recently with #18101 which should fix this warning > File "/usr/local/share/applications/com.libretro.RetroArch.desktop" lacks MimeType key So it might work directly with latest nightly.

Thank you for your test. It seems you are missing some dependencies. Are you sure `apt build-dep retroarch` is working ? You have a tool called Software Sources (Administration section)...