diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-04 16:01:41 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-04 16:01:41 (GMT) |
commit | 04d53a38659ca8baa893f3c6c8715c0d150eaddf (patch) | |
tree | 6cb2c428b6f58df5b13aa7293365c2eae5ea821b /Templates/CXXCMakeSystemConfig.cmake.in | |
parent | 5d850d2a5683d788a7d7eb8f80259d05676de4c6 (diff) | |
download | CMake-04d53a38659ca8baa893f3c6c8715c0d150eaddf.zip CMake-04d53a38659ca8baa893f3c6c8715c0d150eaddf.tar.gz CMake-04d53a38659ca8baa893f3c6c8715c0d150eaddf.tar.bz2 |
ENH: separate the ar program for cxx and c
Diffstat (limited to 'Templates/CXXCMakeSystemConfig.cmake.in')
-rw-r--r-- | Templates/CXXCMakeSystemConfig.cmake.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Templates/CXXCMakeSystemConfig.cmake.in b/Templates/CXXCMakeSystemConfig.cmake.in index 2c8056d..5b867fb 100644 --- a/Templates/CXXCMakeSystemConfig.cmake.in +++ b/Templates/CXXCMakeSystemConfig.cmake.in @@ -2,11 +2,11 @@ # CMakeLocal.make.in should be in the directory where you run configure # in, which need not be the source directory # -SET (CMAKE_AR "@CMAKE_AR@" CACHE FILEPATH - "Archive program used to make archive libraries.") +SET (CMAKE_CXX_AR "@CMAKE_CXX_AR@" CACHE FILEPATH + "Archive program used to make archive libraries of c++ object files.") -SET (CMAKE_AR_ARGS "@CMAKE_AR_ARGS@" CACHE STRING - "Arguments for CMAKE_AR program to create an archive library.") +SET (CMAKE_CXX_AR_ARGS "@CMAKE_CXX_AR_ARGS@" CACHE STRING + "Arguments for CMAKE_CXX_AR program to create an archive library.") SET (CMAKE_CXX_COMPILER "@CXX@" CACHE FILEPATH "Name of C++ compiler used.") @@ -39,8 +39,8 @@ SET (CMAKE_NO_EXPLICIT_TEMPLATE_INSTANTIATION @CMAKE_NO_EXPLICIT_TEMPLATE_ MARK_AS_ADVANCED( CMAKE_CXX_COMPILER -CMAKE_AR -CMAKE_AR_ARGS +CMAKE_CXX_AR +CMAKE_CXX_AR_ARGS CMAKE_TEMPLATE_FLAGS CMAKE_NO_ANSI_STREAM_HEADERS CMAKE_NO_ANSI_FOR_SCOPE |