1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 06:47:44 +00:00

Don't use DEPLOY_TOOL_OPTIONS

It's only useful on 6.7, but in 6.7 it's broken (lol)
This commit is contained in:
Joshua Goins 2024-04-25 18:21:36 -04:00
parent a95b8f93b1
commit 75c86cab2c

View file

@ -25,16 +25,10 @@ else()
install(FILES zone.xiv.novus.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps) install(FILES zone.xiv.novus.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps)
endif() endif()
set(deploy_tool_options_arg "") # We only need to call deploy on one executable
if (WIN32)
set(deploy_tool_options_arg --no-quick-import --no-virtualkeyboard --no-opengl-sw --plugindir "${CMAKE_INSTALL_PREFIX}/bin/bin/plugins" --libdir "${CMAKE_INSTALL_PREFIX}/bin/bin/")
endif()
# We only need to call windeployqt on one executable
qt_generate_deploy_app_script( qt_generate_deploy_app_script(
TARGET novus-launcher TARGET novus-launcher
OUTPUT_SCRIPT deploy_script OUTPUT_SCRIPT deploy_script
NO_UNSUPPORTED_PLATFORM_ERROR NO_UNSUPPORTED_PLATFORM_ERROR
DEPLOY_TOOL_OPTIONS ${deploy_tool_options_arg}
) )
install(SCRIPT ${deploy_script}) install(SCRIPT ${deploy_script})