From 41c56f706a87ce127a5abb9e3b541e7aa162da6a Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 17 Apr 2019 12:32:47 -0400 Subject: [PATCH] It's all Greek to me Thanks, Router! --- indra/cmake/Variables.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake index 016f031ea..3a668ffa5 100644 --- a/indra/cmake/Variables.cmake +++ b/indra/cmake/Variables.cmake @@ -223,11 +223,11 @@ string(REPLACE " " "" VIEWER_CHANNEL_ONEWORD ${VIEWER_CHANNEL}) option(VIEWER_CHANNEL_GRK "Greek character(s) to represent the viewer channel for support purposes, override only for special branches" "") if (NOT VIEWER_CHANNEL_GRK) if (VIEWER_CHANNEL_BASE MATCHES "Test") - set(VIEWER_CHANNEL_GRK "τ") + set(VIEWER_CHANNEL_GRK "\\u03C4") # "τ" elseif (VIEWER_CHANNEL_BASE MATCHES "Alpha") - set(VIEWER_CHANNEL_GRK "α") + set(VIEWER_CHANNEL_GRK "\\u03B1") # "α" elseif (VIEWER_CHANNEL_BASE MATCHES "Beta") - set(VIEWER_CHANNEL_GRK "β") + set(VIEWER_CHANNEL_GRK "\\u03B2") # "β" endif () endif (NOT VIEWER_CHANNEL_GRK)