1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 19:40:20 +03:00

Exclude Qt rendering engine binaries from Windows Companion install.

This commit is contained in:
Max Paperno 2018-07-09 11:48:04 -04:00
parent e24a736fc9
commit f60d3b80be
No known key found for this signature in database
GPG key ID: F5A9DFACA08DD174

View file

@ -384,8 +384,8 @@ elseif(WIN32)
endif() # WIN_DO_FULL_INSTALL endif() # WIN_DO_FULL_INSTALL
# Qt dlls (using windeployqt) # Qt dlls (using windeployqt)
## Qt translations are already packaged into our custom qrc. Pckg size could be further reduced with: [--no-system-d3d-compiler] [--no-angle] ## Qt translations are already packaged into our custom qrc. Also don't need software rendering engines.
set(wdqtopts --no-translations --no-opengl-sw) set(wdqtopts --no-translations --no-opengl-sw --no-system-d3d-compiler --no-angle)
if(CMAKE_BUILD_TYPE STREQUAL "Release") if(CMAKE_BUILD_TYPE STREQUAL "Release")
set(wdqtopts ${wdqtopts} --release) # release builds aren't always properly detected with mingw set(wdqtopts ${wdqtopts} --release) # release builds aren't always properly detected with mingw
endif() endif()