about summary refs log tree commit diff homepage
path: root/tools/kleaver/CMakeLists.txt
blob: befbcc6ee214f4a58dd56452ced1c0b59fa862f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#===------------------------------------------------------------------------===#
#
#                     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
)

klee_get_llvm_libs(LLVM_LIBS support)
set(KLEE_LIBS kleeBasic kleaverSolver kleaverExpr kleeSupport)

target_link_libraries(kleaver ${KLEE_LIBS} ${LLVM_LIBS})

install(TARGETS kleaver RUNTIME DESTINATION bin)