summaryrefslogtreecommitdiff
path: root/Modules/FindwxWindows.cmake
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-04-22 11:12:04 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2004-04-22 11:12:04 -0400
commit5ff05c35d1099780fa60849e26c95c25499b9722 (patch)
treef8edd4fb12db0f0ab93081f9074d67319ad77556 /Modules/FindwxWindows.cmake
parent4e8b76dc93df5ddf4c905209180286fc3aa6f354 (diff)
downloadcmake-5ff05c35d1099780fa60849e26c95c25499b9722.tar.gz
BUG: fix bad if statements
Diffstat (limited to 'Modules/FindwxWindows.cmake')
-rw-r--r--Modules/FindwxWindows.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindwxWindows.cmake b/Modules/FindwxWindows.cmake
index 5a16b4c0be..8c9c1d9103 100644
--- a/Modules/FindwxWindows.cmake
+++ b/Modules/FindwxWindows.cmake
@@ -68,14 +68,14 @@
IF(WIN32)
SET(WIN32_STYLE_FIND 1)
-ENDIF(MINGW)
+ENDIF(WIN32)
IF(MINGW)
SET(WIN32_STYLE_FIND 0)
SET(UNIX_STYLE_FIND 1)
ENDIF(MINGW)
IF(UNIX)
SET(UNIX_STYLE_FIND 1)
-ENDIF(MINGW)
+ENDIF(UNIX)
IF(WIN32_STYLE_FIND)