blob: 4e44fbc604c3552138bbf583bcce23885814da4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
klee_add_component(kleeSupport
CompressionStream.cpp
ErrorHandling.cpp
MemoryUsage.cpp
PrintVersion.cpp
RNG.cpp
Time.cpp
Timer.cpp
TreeStream.cpp
)
target_link_libraries(kleeSupport PRIVATE ${ZLIB_LIBRARIES})
set(LLVM_COMPONENTS
support
)
klee_get_llvm_libs(LLVM_LIBS ${LLVM_COMPONENTS})
target_link_libraries(kleeSupport PUBLIC ${LLVM_LIBS})
|