mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 18:58:21 +00:00
34 lines
863 B
Bash
34 lines
863 B
Bash
. qb/qb.libs.sh
|
|
|
|
check_switch_c C99 -std=gnu99
|
|
check_critical C99 "Cannot find C99 compatible compiler."
|
|
|
|
if [ $HAVE_DYNAMIC != yes ]; then
|
|
check_lib_cxx SNES $LIBSNES snes_init -ldl
|
|
check_critical SNES "Cannot find libsnes."
|
|
add_define_make libsnes $LIBSNES
|
|
fi
|
|
|
|
check_lib ALSA -lasound snd_pcm_open
|
|
check_header OSS sys/soundcard.h
|
|
check_lib AL -lopenal alcOpenDevice
|
|
check_lib RSOUND -lrsound rsd_init
|
|
check_lib ROAR -lroar roar_vs_new
|
|
check_lib JACK -ljack jack_client_open
|
|
|
|
check_lib GLFW -lglfw glfwInit
|
|
check_critical GLFW "Cannot find GLFW library."
|
|
|
|
check_lib CG -lCg cgCreateContext
|
|
check_pkgconf XML libxml-2.0
|
|
|
|
check_lib SRC -lsamplerate src_callback_new
|
|
|
|
check_lib DYNAMIC -ldl dlopen
|
|
|
|
# Creates config.mk.
|
|
VARS="ALSA OSS AL RSOUND ROAR JACK GLFW FILTER CG XML DYNAMIC"
|
|
create_config_make config.mk $VARS
|
|
create_config_header config.h $VARS
|
|
|