From e68b4b9bc72f2b43e94f6c048eb012e9cce0dfad Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 27 Feb 2003 11:54:03 -0500 Subject: [PATCH] Use more condense buildname. If this works fine we can make cmBuildName command deprecated --- Modules/Dart.cmake | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index b46fa4148..c2459c815 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -77,7 +77,22 @@ IF(BUILD_TESTING) # set the site name SITE_NAME(SITE) # set the build name - BUILD_NAME(BUILDNAME) + IF(NOT BUILDNAME) + SET(DART_COMPILER "${CMAKE_CXX_COMPILER}") + IF(NOT DART_COMPILER) + SET(DART_COMPILER "${CMAKE_C_COMPILER}") + ENDIF(NOT DART_COMPILER) + IF(NOT DART_COMPILER) + SET(DART_COMPILER "unknown") + ENDIF(NOT DART_COMPILER) + IF(WIN32) + GET_FILENAME_COMPONENT(DART_CXX_NAME "${CMAKE_CXX_COMPILER}" NAME_WE) + ELSE(WIN32) + GET_FILENAME_COMPONENT(DART_CXX_NAME "${CMAKE_CXX_COMPILER}" NAME) + ENDIF(WIN32) + SET(BUILDNAME "${CMAKE_SYSTEM_NAME}-${DART_CXX_NAME}") + ENDIF(NOT BUILDNAME) + #BUILD_NAME(BUILDNAME) # set the build command BUILD_COMMAND(MAKECOMMAND ${MAKEPROGRAM} )