[cmake-commits] king committed CMakeDetermineCCompiler.cmake 1.38.2.1 1.38.2.2 CMakeDetermineCXXCompiler.cmake 1.33.2.1 1.33.2.2

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Apr 27 09:09:45 EDT 2007


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

Modified Files:
      Tag: CMake-Modules-CompilerId
	CMakeDetermineCCompiler.cmake CMakeDetermineCXXCompiler.cmake 
Log Message:
BUG: Still need to identify compiler using command line for Xcode generator.


Index: CMakeDetermineCXXCompiler.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeDetermineCXXCompiler.cmake,v
retrieving revision 1.33.2.1
retrieving revision 1.33.2.2
diff -u -d -r1.33.2.1 -r1.33.2.2
--- CMakeDetermineCXXCompiler.cmake	27 Apr 2007 12:57:38 -0000	1.33.2.1
+++ CMakeDetermineCXXCompiler.cmake	27 Apr 2007 13:09:42 -0000	1.33.2.2
@@ -74,9 +74,9 @@
 # ENDIF(BEOS)
 
 # Build a small source file to identify the compiler.
-IF(${CMAKE_GENERATOR} MATCHES "(Visual Studio|Xcode)")
+IF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
   SET(CMAKE_CXX_COMPILER_ID_RUN 1)
-ENDIF(${CMAKE_GENERATOR} MATCHES "(Visual Studio|Xcode)")
+ENDIF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
 IF(NOT CMAKE_CXX_COMPILER_ID_RUN)
   SET(CMAKE_CXX_COMPILER_ID_RUN 1)
 

Index: CMakeDetermineCCompiler.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeDetermineCCompiler.cmake,v
retrieving revision 1.38.2.1
retrieving revision 1.38.2.2
diff -u -d -r1.38.2.1 -r1.38.2.2
--- CMakeDetermineCCompiler.cmake	27 Apr 2007 12:57:38 -0000	1.38.2.1
+++ CMakeDetermineCCompiler.cmake	27 Apr 2007 13:09:42 -0000	1.38.2.2
@@ -54,9 +54,9 @@
 MARK_AS_ADVANCED(CMAKE_RANLIB)
 
 # Build a small source file to identify the compiler.
-IF(${CMAKE_GENERATOR} MATCHES "(Visual Studio|Xcode)")
+IF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
   SET(CMAKE_C_COMPILER_ID_RUN 1)
-ENDIF(${CMAKE_GENERATOR} MATCHES "(Visual Studio|Xcode)")
+ENDIF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
 IF(NOT CMAKE_C_COMPILER_ID_RUN)
   SET(CMAKE_C_COMPILER_ID_RUN 1)
 



More information about the Cmake-commits mailing list