diff options
Diffstat (limited to 'runtime/Freestanding/CMakeLists.txt')
-rw-r--r-- | runtime/Freestanding/CMakeLists.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/runtime/Freestanding/CMakeLists.txt b/runtime/Freestanding/CMakeLists.txt new file mode 100644 index 00000000..872a4f05 --- /dev/null +++ b/runtime/Freestanding/CMakeLists.txt @@ -0,0 +1,21 @@ +#===------------------------------------------------------------------------===# +# +# The KLEE Symbolic Virtual Machine +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# + +set(LIB_PREFIX "RuntimeFreestanding") +set(SRC_FILES + memcmp.c + memcpy.c + memmove.c + memset.c + ) + +# Build it +include("${CMAKE_SOURCE_DIR}/cmake/compile_bitcode_library.cmake") +prefix_with_path("${SRC_FILES}" "${CMAKE_CURRENT_SOURCE_DIR}/" prefixed_files) +add_bitcode_library_targets("${LIB_PREFIX}" "${prefixed_files}" "" "") \ No newline at end of file |