summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 14:25:13 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 14:25:13 (GMT)
commit000326237d58d7f0c5b7643088d5fe3fbf8e0d5d (patch)
treea6abd278a2633f53f445cdaa6b000ef5630ff539
parentd4f5545007c99259dcb7414d975a5446d5163933 (diff)
downloadCMake-000326237d58d7f0c5b7643088d5fe3fbf8e0d5d.zip
CMake-000326237d58d7f0c5b7643088d5fe3fbf8e0d5d.tar.gz
CMake-000326237d58d7f0c5b7643088d5fe3fbf8e0d5d.tar.bz2
Fix find wxWindows
-rw-r--r--Modules/FindwxWindows.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/FindwxWindows.cmake b/Modules/FindwxWindows.cmake
index a02ea01..abfb5ee 100644
--- a/Modules/FindwxWindows.cmake
+++ b/Modules/FindwxWindows.cmake
@@ -25,12 +25,12 @@ IF(WIN32)
)
SET (WXWINDOWS_POSSIBLE_INCLUDE_PATHS
- "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\wxWindows_is1;Inno Setup: App Path]/include/wx"
- $ENV{WXWIN}/include/wx
+ "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\wxWindows_is1;Inno Setup: App Path]/include"
+ $ENV{WXWIN}/include
)
FIND_PATH(WXWINDOWS_INCLUDE_PATH
- wx.h
+ wx/wx.h
${WXWINDOWS_POSSIBLE_INCLUDE_PATHS}
)