summaryrefslogtreecommitdiffstats
path: root/Modules/CheckSizeOf.cmake
blob: 8f1b122d7b9b5cfa79d4c6e69ec356c33ae3728c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# 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)
  TRY_RUN(RUN_RESULT COMPILE_OK 
          ${PROJECT_BINARY_DIR}
          ${CMAKE_ROOT}/Modules/CheckSizeOf.c
          COMPILE_DEFINITIONS -DCHECK_SIZE_OF="${TYPE}"
          OUTPUT_VARIABLE OUTPUT)
  IF(COMPILE_OK)
    SET(${VARIABLE} ${RUN_RESULT})
  ELSE(COMPILE_OK)
    WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log 
      "Determining size of ${TYPE} failed with the following output:\n${OUTPUT}\n")
  ENDIF(COMPILE_OK)
ENDMACRO(CHECK_TYPE_SIZE)