mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00
Rework editor icons
This commit is contained in:
parent
c29816f67e
commit
1ad9e5f9e8
341 changed files with 19217 additions and 373 deletions
|
@ -347,6 +347,16 @@ add_qt_style_dlls() {
|
|||
QT_STYLES[$CONFIG]="${QT_STYLES[$CONFIG]} $@"
|
||||
}
|
||||
|
||||
declare -A QT_IMAGEFORMATS
|
||||
QT_IMAGEFORMATS["Release"]=""
|
||||
QT_IMAGEFORMATS["Debug"]=""
|
||||
QT_IMAGEFORMATS["RelWithDebInfo"]=""
|
||||
add_qt_image_dlls() {
|
||||
local CONFIG=$1
|
||||
shift
|
||||
QT_IMAGEFORMATS[$CONFIG]="${QT_IMAGEFORMATS[$CONFIG]} $@"
|
||||
}
|
||||
|
||||
if [ -z $PLATFORM ]; then
|
||||
PLATFORM="$(uname -m)"
|
||||
fi
|
||||
|
@ -913,12 +923,13 @@ printf "Qt ${QT_VER}... "
|
|||
DLLSUFFIX=""
|
||||
fi
|
||||
if [ "${QT_VER:0:1}" -eq "6" ]; then
|
||||
add_runtime_dlls $CONFIGURATION "$(pwd)/bin/Qt${QT_VER:0:1}"{Core,Gui,Network,OpenGL,OpenGLWidgets,Widgets}${DLLSUFFIX}.dll
|
||||
add_runtime_dlls $CONFIGURATION "$(pwd)/bin/Qt${QT_VER:0:1}"{Core,Gui,Network,OpenGL,OpenGLWidgets,Widgets,Svg}${DLLSUFFIX}.dll
|
||||
else
|
||||
add_runtime_dlls $CONFIGURATION "$(pwd)/bin/Qt${QT_VER:0:1}"{Core,Gui,Network,OpenGL,Widgets}${DLLSUFFIX}.dll
|
||||
add_runtime_dlls $CONFIGURATION "$(pwd)/bin/Qt${QT_VER:0:1}"{Core,Gui,Network,OpenGL,Widgets,Svg}${DLLSUFFIX}.dll
|
||||
fi
|
||||
add_qt_platform_dlls $CONFIGURATION "$(pwd)/plugins/platforms/qwindows${DLLSUFFIX}.dll"
|
||||
add_qt_style_dlls $CONFIGURATION "$(pwd)/plugins/styles/qwindowsvistastyle${DLLSUFFIX}.dll"
|
||||
add_qt_image_dlls $CONFIGURATION "$(pwd)/plugins/imageformats/qsvg${DLLSUFFIX}.dll"
|
||||
done
|
||||
echo Done.
|
||||
}
|
||||
|
@ -1112,6 +1123,13 @@ fi
|
|||
echo " $(basename $DLL)"
|
||||
cp "$DLL" "${DLL_PREFIX}styles"
|
||||
done
|
||||
|
||||
echo "- Qt Image Format DLLs..."
|
||||
mkdir -p ${DLL_PREFIX}imageformats
|
||||
for DLL in ${QT_IMAGEFORMATS[$CONFIGURATION]}; do
|
||||
echo " $(basename $DLL)"
|
||||
cp "$DLL" "${DLL_PREFIX}imageformats"
|
||||
done
|
||||
echo
|
||||
done
|
||||
#fi
|
||||
|
|
|
@ -36,7 +36,7 @@ declare -rA GROUPED_DEPS=(
|
|||
libsdl2-dev libqt5opengl5-dev qttools5-dev qttools5-dev-tools libopenal-dev
|
||||
libunshield-dev libtinyxml-dev libbullet-dev liblz4-dev libpng-dev libjpeg-dev
|
||||
libluajit-5.1-dev librecast-dev libsqlite3-dev ca-certificates libicu-dev
|
||||
libyaml-cpp-dev
|
||||
libyaml-cpp-dev libqt5svg5 libqt5svg5-dev
|
||||
"
|
||||
|
||||
# These dependencies can alternatively be built and linked statically.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue