diff options
author | Brad King <brad.king@kitware.com> | 2002-12-30 16:02:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-12-30 16:02:31 (GMT) |
commit | ea1467d056f4b0e646376f4dc5091dec397a46a8 (patch) | |
tree | 1f16c81824978fb66273aa1cc844f3ec68b0c45e /Modules/CheckSizeOf.cmake | |
parent | 6e4712d6ed606205f9ca4bb5aa2de8ad19c480a7 (diff) | |
download | CMake-ea1467d056f4b0e646376f4dc5091dec397a46a8.zip CMake-ea1467d056f4b0e646376f4dc5091dec397a46a8.tar.gz CMake-ea1467d056f4b0e646376f4dc5091dec397a46a8.tar.bz2 |
ENH: Renamed Modules/CheckSizeOf to Modules/CheckTypeSize for consistency with the macro name that is defined by the module.
Diffstat (limited to 'Modules/CheckSizeOf.cmake')
-rw-r--r-- | Modules/CheckSizeOf.cmake | 38 |
1 files changed, 4 insertions, 34 deletions
diff --git a/Modules/CheckSizeOf.cmake b/Modules/CheckSizeOf.cmake index b4a880c..3820d4c 100644 --- a/Modules/CheckSizeOf.cmake +++ b/Modules/CheckSizeOf.cmake @@ -1,34 +1,4 @@ -# -# Check if the type exists and determine size of type. if the type -# exists, the size will be stored to the variable. -# -# CHECK_TYPE_SIZE - macro which checks the size of type -# VARIABLE - variable to store size if the type exists. -# - -MACRO(CHECK_TYPE_SIZE TYPE VARIABLE) - IF("${VARIABLE}" MATCHES "^${VARIABLE}$") - SET(MACRO_CHECK_TYPE_SIZE_FLAGS -DCHECK_SIZE_OF="${TYPE}") - IF(HAVE_SYS_TYPES_H) - SET(MACRO_CHECK_TYPE_SIZE_FLAGS - "${MACRO_CHECK_TYPE_SIZE_FLAGS} -DHAVE_SYS_TYPES_H") - ENDIF(HAVE_SYS_TYPES_H) - IF(HAVE_STDINT_H) - SET(MACRO_CHECK_TYPE_SIZE_FLAGS "${MACRO_CHECK_TYPE_SIZE_FLAGS} -DHAVE_STDINT_H") - ENDIF(HAVE_STDINT_H) - MESSAGE(STATUS "Check size of ${TYPE}") - TRY_RUN(${VARIABLE} HAVE_${VARIABLE} - ${CMAKE_BINARY_DIR} - ${CMAKE_ROOT}/Modules/CheckSizeOf.c - CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_TYPE_SIZE_FLAGS} - OUTPUT_VARIABLE OUTPUT) - IF(HAVE_${VARIABLE}) - MESSAGE(STATUS "Check size of ${TYPE} - done") - ELSE(HAVE_${VARIABLE}) - MESSAGE(STATUS "Check size of ${TYPE} - failed") - WRITE_FILE(${CMAKE_BINARY_DIR}/CMakeError.log - "Determining size of ${TYPE} failed with the following output:\n${OUTPUT}\n" - APPEND) - ENDIF(HAVE_${VARIABLE}) - ENDIF("${VARIABLE}" MATCHES "^${VARIABLE}$") -ENDMACRO(CHECK_TYPE_SIZE) +MESSAGE(SEND_ERROR + "Modules/CheckSizeOf.cmake has been removed. " + "Use Modules/CheckTypeSize.cmake instead. This " + "compatability check may be removed before the next release!") |