From 76e9af1575cf264e5af6e825c0af4da80be0b3e2 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 20 Sep 2002 13:16:50 -0400 Subject: Add two commonly used modules. First one checks if the function exists, the second one checks the size of type --- Modules/CheckFunctionExists.c | 15 +++++++++++++++ Modules/CheckFunctionExists.cmake | 22 ++++++++++++++++++++++ Modules/CheckSizeOf.c | 20 ++++++++++++++++++++ Modules/CheckSizeOf.cmake | 21 +++++++++++++++++++++ 4 files changed, 78 insertions(+) create mode 100644 Modules/CheckFunctionExists.c create mode 100644 Modules/CheckFunctionExists.cmake create mode 100644 Modules/CheckSizeOf.c create mode 100644 Modules/CheckSizeOf.cmake diff --git a/Modules/CheckFunctionExists.c b/Modules/CheckFunctionExists.c new file mode 100644 index 0000000..e205b64 --- /dev/null +++ b/Modules/CheckFunctionExists.c @@ -0,0 +1,15 @@ +#ifdef CHECK_FUNCTION_EXISTS + +char CHECK_FUNCTION_EXISTS(); + +int main() +{ + CHECK_FUNCTION_EXISTS(); + return 0; +} + +#else /* CHECK_FUNCTION_EXISTS */ + +# error "CHECK_FUNCTION_EXISTS has to specify the function" + +#endif /* CHECK_FUNCTION_EXISTS */ diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake new file mode 100644 index 0000000..690c17e --- /dev/null +++ b/Modules/CheckFunctionExists.cmake @@ -0,0 +1,22 @@ +# +# 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_FUNCTION_EXISTS FUNCTION VARIABLE) + TRY_COMPILE(COMPILE_OK + ${PROJECT_BINARY_DIR} + ${CMAKE_ROOT}/Modules/CheckFunctionExists.c + COMPILE_DEFINITIONS -DCHECK_FUNCTION_EXISTS=${FUNCTION} + OUTPUT_VARIABLE OUTPUT) + IF(COMPILE_OK) + SET(${VARIABLE} ${COMPILE_OK}) + ELSE(COMPILE_OK) + WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log + "Determining if the function ${FUNCTION} exists failed with the following output:\n" + "${OUTPUT}\n") + ENDIF(COMPILE_OK) +ENDMACRO(CHECK_FUNCTION_EXISTS) diff --git a/Modules/CheckSizeOf.c b/Modules/CheckSizeOf.c new file mode 100644 index 0000000..139a3ab --- /dev/null +++ b/Modules/CheckSizeOf.c @@ -0,0 +1,20 @@ +#ifdef CHECK_SIZE_OF + +#ifdef HAVE_SYS_TYPES_H +# include +#endif /* HAVE_SYS_TYPES_H */ + +#ifdef HAVE_STDINT_H +# include +#endif /* HAVE_STDINT_H */ + +int main() +{ + return sizeof(CHECK_SIZE_OF); +} + +#else /* CHECK_SIZE_OF */ + +# error "CHECK_SIZE_OF has to specify the type" + +#endif /* CHECK_SIZE_OF */ diff --git a/Modules/CheckSizeOf.cmake b/Modules/CheckSizeOf.cmake new file mode 100644 index 0000000..8f1b122 --- /dev/null +++ b/Modules/CheckSizeOf.cmake @@ -0,0 +1,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) -- cgit v0.12