mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Merge with develop
This commit is contained in:
parent
4b6e360e22
commit
913b43f243
3 changed files with 12 additions and 1 deletions
|
@ -304,7 +304,7 @@ IF(WITH_QT5)
|
||||||
|
|
||||||
ADD_QT_LIBRARY(XcbQpa)
|
ADD_QT_LIBRARY(XcbQpa)
|
||||||
ADD_QT_LIBRARY(PlatformSupport)
|
ADD_QT_LIBRARY(PlatformSupport)
|
||||||
SET(QT_LIBRARIES ${QT_LIBRARIES} -lX11-xcb -lXi -lSM -lICE -lxcb -lGL)
|
SET(QT_LIBRARIES ${QT_LIBRARIES} -lX11-xcb -lXi -lSM -lICE -lxcb -lGL -lxcb-glx)
|
||||||
IF(EXISTS "${QT_LIBRARY_DIR}/libxcb-static.a")
|
IF(EXISTS "${QT_LIBRARY_DIR}/libxcb-static.a")
|
||||||
SET(QT_LIBRARIES ${QT_LIBRARIES} "${QT_LIBRARY_DIR}/libxcb-static.a")
|
SET(QT_LIBRARIES ${QT_LIBRARIES} "${QT_LIBRARY_DIR}/libxcb-static.a")
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
|
@ -13,4 +13,11 @@ chmod +x "$ROOTPATH/ryzom_client_patcher"
|
||||||
chmod +x "$ROOTPATH/ryzom_configuration_qt"
|
chmod +x "$ROOTPATH/ryzom_configuration_qt"
|
||||||
chmod +x "$ROOTPATH/ryzom_installer_qt"
|
chmod +x "$ROOTPATH/ryzom_installer_qt"
|
||||||
|
|
||||||
|
# copy Ryzom Installer if present in parent directory
|
||||||
|
if [ -e "$ROOTPATH/../ryzom_installer_qt" ]
|
||||||
|
then
|
||||||
|
rm -f "$ROOTPATH/../ryzom_installer_qt"
|
||||||
|
cp -a "$ROOTPATH/ryzom_installer_qt" "$ROOTPATH/.."
|
||||||
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -30,6 +30,10 @@ if exist %ROOTPATH%\msvcr100_win64.dll (
|
||||||
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe (
|
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe (
|
||||||
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe del %ROOTPATH%\..\ryzom_installer_qt_r.exe
|
if exist %ROOTPATH%\..\ryzom_installer_qt_r.exe del %ROOTPATH%\..\ryzom_installer_qt_r.exe
|
||||||
copy /Y %ROOTPATH%\ryzom_installer_qt_r.exe %ROOTPATH%\..
|
copy /Y %ROOTPATH%\ryzom_installer_qt_r.exe %ROOTPATH%\..
|
||||||
|
if exist %ROOTPATH%\..\msvcp100.dll del %ROOTPATH%\..\msvcp100.dll
|
||||||
|
copy /Y %ROOTPATH%\msvcp100.dll %ROOTPATH%\..
|
||||||
|
if exist %ROOTPATH%\..\msvcr100.dll del %ROOTPATH%\..\msvcr100.dll
|
||||||
|
copy /Y %ROOTPATH%\msvcr100.dll %ROOTPATH%\..
|
||||||
)
|
)
|
||||||
|
|
||||||
:end
|
:end
|
||||||
|
|
Loading…
Reference in a new issue