From 6fc74eb83003da6c8716b2fd55a894a5dc18336b Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 17 Feb 2015 14:56:34 -0800 Subject: [PATCH] fix cmake build type check for interface icon --- interface/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 200d7a72e6..31d8f3df45 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -78,7 +78,7 @@ if (APPLE) set(MACOSX_BUNDLE_BUNDLE_NAME Interface) set(MACOSX_BUNDLE_GUI_IDENTIFIER io.highfidelity.Interface) - if (${CMAKE_BUILD_TYPE} MATCHES "RELEASE") + if (CMAKE_BUILD_TYPE STREQUAL "Release") set(ICON_FILENAME "interface.icns") else () set(ICON_FILENAME "interface-beta.icns")