Enable building with RetroAchievements by default
This commit is contained in:
parent
10c3506f1a
commit
4eace11a8b
|
@ -166,7 +166,7 @@ jobs:
|
|||
shell: bash
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install cmake ninja-build ccache libsdl2-dev libgtk-3-dev qtbase5-dev qtbase5-dev-tools qtbase5-private-dev qt5-default qttools5-dev libegl1-mesa-dev libevdev-dev libgbm-dev libdrm-dev libwayland-dev libwayland-egl-backend-dev extra-cmake-modules
|
||||
sudo apt-get -y install cmake ninja-build ccache libsdl2-dev libgtk-3-dev qtbase5-dev qtbase5-dev-tools qtbase5-private-dev qt5-default qttools5-dev libegl1-mesa-dev libevdev-dev libgbm-dev libdrm-dev libwayland-dev libwayland-egl-backend-dev extra-cmake-modules libcurl4-gnutls-dev
|
||||
|
||||
- name: Compile build
|
||||
shell: bash
|
||||
|
@ -249,7 +249,7 @@ jobs:
|
|||
- name: Install packages
|
||||
shell: bash
|
||||
run: |
|
||||
brew install qt5 sdl2
|
||||
brew install qt5 sdl2 curl
|
||||
|
||||
- name: Clone mac externals
|
||||
shell: bash
|
||||
|
|
|
@ -22,7 +22,7 @@ if(NOT ANDROID)
|
|||
option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" ON)
|
||||
option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
|
||||
option(ENABLE_DISCORD_PRESENCE "Build with Discord Rich Presence support" ON)
|
||||
option(ENABLE_CHEEVOS "Build with RetroAchievements support" OFF)
|
||||
option(ENABLE_CHEEVOS "Build with RetroAchievements support" ON)
|
||||
option(USE_SDL2 "Link with SDL2 for controller support" ON)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -70,6 +70,8 @@ Other features include:
|
|||
- Memory card editor and save importer
|
||||
- Emulated CPU overclocking
|
||||
- Integrated and remote debugging
|
||||
- Multitap controllers (up to 8 devices)
|
||||
- RetroAchievements
|
||||
|
||||
## System Requirements
|
||||
- A CPU faster than a potato. But it needs to be x86_64, AArch32/armv7, or AArch64/ARMv8, otherwise you won't get a recompiler and it'll be slow.
|
||||
|
@ -180,8 +182,9 @@ Requirements (Debian/Ubuntu package names):
|
|||
- Qt 5 (`qtbase5-dev`, `qtbase5-private-dev`, `qtbase5-dev-tools`, `qttools5-dev`)
|
||||
- libevdev (`libevdev-dev`)
|
||||
- git (`git`) (Note: needed to clone the repository and at build time)
|
||||
- Optional for faster building: Ninja (`ninja-build`)
|
||||
- Optional for RetroAchievements (on by default): libcurl (`libcurl4-gnutls-dev`)
|
||||
- Optional for framebuffer output: DRM/GBM (`libgbm-dev`, `libdrm-dev`)
|
||||
- Optional for faster building: Ninja (`ninja-build`)
|
||||
|
||||
1. Clone the repository. Submodules aren't necessary, there is only one and it is only used for Windows (`git clone https://github.com/stenzek/duckstation.git -b dev`).
|
||||
2. Create a build directory, either in-tree or elsewhere.
|
||||
|
|
Loading…
Reference in New Issue