mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Add HAVE_SSA switch to qb
This commit is contained in:
parent
e663a69c0b
commit
d15eb9a570
4 changed files with 13 additions and 0 deletions
|
@ -231,6 +231,10 @@ OBJ += ui/drivers/ui_qt.o
|
||||||
LIBS += -lQt5Quick -lQt5Widgets -lQt5Gui -lQt5Qml -lQt5Network -lQt5Core -lglu32 -lopengl32 -L./ui/drivers/qt/wrapper/build/release -lwrapper
|
LIBS += -lQt5Quick -lQt5Widgets -lQt5Gui -lQt5Qml -lQt5Network -lQt5Core -lglu32 -lopengl32 -L./ui/drivers/qt/wrapper/build/release -lwrapper
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(HAVE_SSA),1)
|
||||||
|
LIBS += -lass
|
||||||
|
endif
|
||||||
|
|
||||||
# LibretroDB
|
# LibretroDB
|
||||||
|
|
||||||
ifeq ($(HAVE_LIBRETRODB), 1)
|
ifeq ($(HAVE_LIBRETRODB), 1)
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -105,6 +105,10 @@ if [ "$HAVE_EGL" != "no" ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "HAVE_SSA" != "no" ]; then
|
||||||
|
check_lib SSA -lass ass_library_init
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$HAVE_EXYNOS" != "no" ]; then
|
if [ "$HAVE_EXYNOS" != "no" ]; then
|
||||||
check_pkgconf EXYNOS libdrm_exynos
|
check_pkgconf EXYNOS libdrm_exynos
|
||||||
check_pkgconf DRM libdrm
|
check_pkgconf DRM libdrm
|
||||||
|
|
|
@ -18,6 +18,7 @@ HAVE_GLES_CFLAGS= # C-flags for custom GLES library
|
||||||
HAVE_THREADS=auto # Threading support
|
HAVE_THREADS=auto # Threading support
|
||||||
HAVE_FFMPEG=auto # Enable FFmpeg recording support
|
HAVE_FFMPEG=auto # Enable FFmpeg recording support
|
||||||
C89_FFMPEG=no
|
C89_FFMPEG=no
|
||||||
|
HAVE_SSA=auto # Enable SSA/ASS for FFmpeg subtitle support
|
||||||
HAVE_DYLIB=auto # Enable dynamic loading support
|
HAVE_DYLIB=auto # Enable dynamic loading support
|
||||||
HAVE_NETWORKING=auto # Enable networking features (recommended)
|
HAVE_NETWORKING=auto # Enable networking features (recommended)
|
||||||
HAVE_NETPLAY=auto # Enable netplay support (requires networking)
|
HAVE_NETPLAY=auto # Enable netplay support (requires networking)
|
||||||
|
|
Loading…
Add table
Reference in a new issue