refactor: Update Test Status Enum and Compiler Options

- Changed the enum values in GetTestStatusResponse from STATUS_* to TEST_STATUS_* for consistency and clarity.
- Updated corresponding references in imgui_test_harness_service.cc and gui_automation_client.cc to reflect the new enum naming.
- Added /EHsc compiler option in CMakeLists.txt for MSVC to enable C++ exception handling.
This commit is contained in:
scawful
2025-10-10 10:55:28 -04:00
parent b64ef74b10
commit b2701c8cec
4 changed files with 20 additions and 19 deletions

View File

@@ -280,6 +280,7 @@ endif()
# Compiler-specific settings
if(MSVC)
target_compile_options(yaze_common INTERFACE
/EHsc
/W4 /permissive-
/bigobj # Support large object files
/utf-8 # Use UTF-8 encoding