about summary refs log tree commit diff homepage
path: root/unittests/Solver/CMakeLists.txt
blob: 602a1196d086c1fa1aaa8f638f687f81a04538ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
add_klee_unit_test(SolverTest
  SolverTest.cpp)
# FIXME: KLEE's libraries should just declare what libraries
# they depend on so we don't need to manually link.
klee_get_llvm_libs(LLVM_LIBS Support)
target_link_libraries(SolverTest
  PRIVATE
  kleaverSolver
  kleaverExpr
  kleeSupport
  kleeBasic
  ${LLVM_LIBS})