1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-18 07:07:45 +00:00

Capitalize the executable name on Windows

This commit is contained in:
Joshua Goins 2024-04-26 16:38:59 -04:00
parent 2f4054f62e
commit a30d0d5270

View file

@ -174,6 +174,12 @@ if (ENABLE_GAMEMODE)
target_compile_definitions(astra PRIVATE ENABLE_GAMEMODE)
endif ()
if (WIN32)
set_target_properties(astra PROPERTIES
WIN32_EXECUTABLE TRUE
OUTPUT_NAME "Astra")
endif ()
install(TARGETS astra ${KF6_INSTALL_TARGETS_DEFAULT_ARGS})
qt_finalize_target(astra)