diff options
Diffstat (limited to 'runtime/Intrinsic/CMakeLists.txt')
-rw-r--r-- | runtime/Intrinsic/CMakeLists.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/runtime/Intrinsic/CMakeLists.txt b/runtime/Intrinsic/CMakeLists.txt new file mode 100644 index 00000000..488e149b --- /dev/null +++ b/runtime/Intrinsic/CMakeLists.txt @@ -0,0 +1,24 @@ +#===------------------------------------------------------------------------===# +# +# The KLEE Symbolic Virtual Machine +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# +# Set up +set(LIB_PREFIX "RuntimeIntrinsic") +set(SRC_FILES + dso_handle.c + klee_choose.c + klee_div_zero_check.c + klee_int.c + klee_is_replay.c + klee_overshift_check.c + klee_range.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}" "-std=gnu89" "") \ No newline at end of file |