diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-22 15:12:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-22 15:12:04 (GMT) |
commit | 5ff05c35d1099780fa60849e26c95c25499b9722 (patch) | |
tree | f8edd4fb12db0f0ab93081f9074d67319ad77556 /Modules/FindwxWindows.cmake | |
parent | 4e8b76dc93df5ddf4c905209180286fc3aa6f354 (diff) | |
download | CMake-5ff05c35d1099780fa60849e26c95c25499b9722.zip CMake-5ff05c35d1099780fa60849e26c95c25499b9722.tar.gz CMake-5ff05c35d1099780fa60849e26c95c25499b9722.tar.bz2 |
BUG: fix bad if statements
Diffstat (limited to 'Modules/FindwxWindows.cmake')
-rw-r--r-- | Modules/FindwxWindows.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindwxWindows.cmake b/Modules/FindwxWindows.cmake index 5a16b4c..8c9c1d9 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) |