summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 17:16:50 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-20 17:16:50 (GMT)
commit76e9af1575cf264e5af6e825c0af4da80be0b3e2 (patch)
tree549c8f2870f8403b788c676657aeb114ea7027cc
parent157e2b4ac3a067107561d4ccc2b08ea3555cce44 (diff)
downloadCMake-76e9af1575cf264e5af6e825c0af4da80be0b3e2.zip
CMake-76e9af1575cf264e5af6e825c0af4da80be0b3e2.tar.gz
CMake-76e9af1575cf264e5af6e825c0af4da80be0b3e2.tar.bz2
Add two commonly used modules. First one checks if the function exists, the second one checks the size of type
-rw-r--r--Modules/CheckFunctionExists.c15
-rw-r--r--Modules/CheckFunctionExists.cmake22
-rw-r--r--Modules/CheckSizeOf.c20
-rw-r--r--Modules/CheckSizeOf.cmake21
4 files changed, 78 insertions, 0 deletions
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 <sys/types.h>
+#endif /* HAVE_SYS_TYPES_H */
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#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)