aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Murphy <bmurphy@bcmcs.net>2022-03-24 14:00:16 +1000
committerBrent Murphy <bmurphy@bcmcs.net>2022-03-24 14:00:16 +1000
commit8a297333fa4dfd730f3e50d4bc612ffc8121d73a (patch)
treefba0884e10630d4c73bd06abf77982094061a52f
parent9da4980bea01fb10a060438319746382a9b1df6b (diff)
fixup! [cmake] FindCrossguid fixes
-rw-r--r--cmake/modules/FindCrossGUID.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindCrossGUID.cmake b/cmake/modules/FindCrossGUID.cmake
index 440db17566..57f84d5f8e 100644
--- a/cmake/modules/FindCrossGUID.cmake
+++ b/cmake/modules/FindCrossGUID.cmake
@@ -20,7 +20,7 @@ if(ENABLE_INTERNAL_CROSSGUID)
# Temp: We force CMAKE_BUILD_TYPE to release, and makefile builds respect this
# Multi config generators (eg VS, Xcode) dont, so handle debug postfix build/link for them only
- if(NOT CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR NOT CMAKE_GENERATOR STREQUAL "Ninja")
+ if(NOT (CMAKE_GENERATOR STREQUAL "Unix Makefiles" OR CMAKE_GENERATOR STREQUAL "Ninja"))
set(CROSSGUID_DEBUG_POSTFIX "-dgb")
endif()