├── README.md ├── .github └── pull.yml └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | This repository is only for building Windows Releases for Retrobat ( https://www.retrobat.ovh ) 2 | -------------------------------------------------------------------------------- /.github/pull.yml: -------------------------------------------------------------------------------- 1 | version: "1" 2 | rules: 3 | - base: master 4 | upstream: batocera-linux:master 5 | mergeMethod: hardreset 6 | - base: stable 7 | upstream: batocera-linux:stable 8 | mergeMethod: hardreset 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.slo 3 | *.lo 4 | *.o 5 | # batocera 6 | *.mo 7 | 8 | # Compiled Dynamic libraries 9 | *.so 10 | 11 | # Compiled Static libraries 12 | *.lai 13 | *.la 14 | *.a 15 | 16 | # Dependency makefiles 17 | *.d 18 | 19 | # Compiled executable 20 | emulationstation 21 | 22 | # build directory 23 | build 24 | Debug 25 | Release 26 | MinSizeRel 27 | RelWithDebInfo 28 | 29 | # CMake 30 | CMakeCache.txt 31 | CMakeFiles 32 | cmake_install.cmake 33 | Makefile 34 | 35 | # Eclipse 36 | .cproject 37 | .project 38 | .settings/ 39 | 40 | # Clion 41 | .idea/ 42 | CPackConfig.cmake 43 | CPackSourceConfig.cmake 44 | 45 | # batocera 46 | # po backup 47 | *.po~ 48 | /.vs/ 49 | *.sqlite 50 | --------------------------------------------------------------------------------