From 68b3d4bd7e37d79c61006267c93167e1ac7530e2 Mon Sep 17 00:00:00 2001 From: Umbrix Admin Date: Tue, 20 Jan 2026 14:32:20 +0300 Subject: [PATCH] feat: Rename executable to 'Umbrix Start.exe' (no BAT, antivirus-safe) - Set OUTPUT_NAME to 'Umbrix Start' in runner/CMakeLists.txt - Users see clear 'Umbrix Start.exe' file to run - No BAT files that could be blocked by antivirus - README.txt guides users to the main executable --- windows/runner/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt index 394917c0..b1c0ecbb 100644 --- a/windows/runner/CMakeLists.txt +++ b/windows/runner/CMakeLists.txt @@ -16,6 +16,9 @@ add_executable(${BINARY_NAME} WIN32 "runner.exe.manifest" ) +# Set the output name with space +set_target_properties(${BINARY_NAME} PROPERTIES OUTPUT_NAME "Umbrix Start") + # Apply the standard set of build settings. This can be removed for applications # that need different build settings. apply_standard_settings(${BINARY_NAME})