mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +00:00
e42c21321b
This moves the check for a Qt5 moc into its own file, qb.moc.sh which is executed at the end of the script to avoid the direct dependency on pkg-config. Now instead it depends on the QT5CORE_CFLAGS and QT5CORE_LIBS variables set in config.lib.sh. These should always be set if HAVE_QT=yes. This also creates a new qb.make.sh file to ensure that the config.mk and config.h files are created at the end of the configure script.
18 lines
167 B
Bash
Executable File
18 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PACKAGE_NAME=retroarch
|
|
|
|
cat /dev/null > config.log
|
|
|
|
. qb/qb.system.sh
|
|
|
|
. qb/qb.params.sh
|
|
|
|
. qb/qb.comp.sh
|
|
|
|
. qb/qb.libs.sh
|
|
|
|
. qb/qb.moc.sh
|
|
|
|
. qb/qb.make.sh
|