blob: c079c2a4e9f340cb1bedf0a91e5ab12f9f213c67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
add_executable(kleaver
main.cpp
)
set(KLEE_LIBS
kleaverSolver
)
target_link_libraries(kleaver ${KLEE_LIBS})
install(TARGETS kleaver RUNTIME DESTINATION bin)
|