[Cmake-commits] [cmake-commits] miguelf committed FindwxWidgets.cmake 1.21 1.22

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Jun 17 18:02:26 EDT 2008


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv31192

Modified Files:
	FindwxWidgets.cmake 
Log Message:
ENH: Added support for MSYS as a unix style search.



Index: FindwxWidgets.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/FindwxWidgets.cmake,v
retrieving revision 1.21
retrieving revision 1.22
diff -C 2 -d -r1.21 -r1.22
*** FindwxWidgets.cmake	16 Jun 2008 18:15:52 -0000	1.21
--- FindwxWidgets.cmake	17 Jun 2008 22:02:24 -0000	1.22
***************
*** 175,185 ****
  #=====================================================================
  #=====================================================================
! IF(WIN32 AND NOT CYGWIN)
    SET(wxWidgets_FIND_STYLE "win32")
! ELSE(WIN32 AND NOT CYGWIN)
!   IF(UNIX)
      SET(wxWidgets_FIND_STYLE "unix")
!   ENDIF(UNIX)
! ENDIF(WIN32 AND NOT CYGWIN)
  
  #=====================================================================
--- 175,185 ----
  #=====================================================================
  #=====================================================================
! IF(WIN32 AND NOT CYGWIN AND NOT MSYS)
    SET(wxWidgets_FIND_STYLE "win32")
! ELSE(WIN32 AND NOT CYGWIN AND NOT MSYS)
!   IF(UNIX OR MSYS)
      SET(wxWidgets_FIND_STYLE "unix")
!   ENDIF(UNIX OR MSYS)
! ENDIF(WIN32 AND NOT CYGWIN AND NOT MSYS)
  
  #=====================================================================



More information about the Cmake-commits mailing list