summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineCXXCompiler.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-07-21 15:53:23 (GMT)
committerBrad King <brad.king@kitware.com>2006-07-21 15:53:23 (GMT)
commitd56e6a9241df2244732e23b7dd88b94e8bef3a33 (patch)
tree49f66984758a8b3f50dac488326008f7cc8f0136 /Modules/CMakeDetermineCXXCompiler.cmake
parent673e3f8964f124d65731a93fb5fdc8d6fa760ec4 (diff)
downloadCMake-d56e6a9241df2244732e23b7dd88b94e8bef3a33.zip
CMake-d56e6a9241df2244732e23b7dd88b94e8bef3a33.tar.gz
CMake-d56e6a9241df2244732e23b7dd88b94e8bef3a33.tar.bz2
BUG: Fixed building of C++-only projects and added a test.
Diffstat (limited to 'Modules/CMakeDetermineCXXCompiler.cmake')
-rw-r--r--Modules/CMakeDetermineCXXCompiler.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineCXXCompiler.cmake b/Modules/CMakeDetermineCXXCompiler.cmake
index 35197eb..e24aaa9 100644
--- a/Modules/CMakeDetermineCXXCompiler.cmake
+++ b/Modules/CMakeDetermineCXXCompiler.cmake
@@ -42,6 +42,16 @@ IF(NOT CMAKE_CXX_COMPILER)
ENDIF(NOT CMAKE_CXX_COMPILER)
MARK_AS_ADVANCED(CMAKE_CXX_COMPILER)
+GET_FILENAME_COMPONENT(COMPILER_LOCATION "${CMAKE_CXX_COMPILER}" PATH)
+
+FIND_PROGRAM(CMAKE_AR NAMES ar PATHS ${COMPILER_LOCATION})
+
+FIND_PROGRAM(CMAKE_RANLIB NAMES ranlib)
+IF(NOT CMAKE_RANLIB)
+ SET(CMAKE_RANLIB : CACHE INTERNAL "noop for ranlib")
+ENDIF(NOT CMAKE_RANLIB)
+MARK_AS_ADVANCED(CMAKE_RANLIB)
+
# do not test for GNU if the generator is visual studio
IF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
SET(CMAKE_COMPILER_IS_GNUCXX_RUN 1)