about summary refs log tree commit diff homepage
path: root/unittests/Solver
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2016-01-14 16:59:08 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2016-02-10 20:56:22 +0000
commit37694e11c7a767105244ec563b061d13f0779f05 (patch)
tree8948d430d72373221eb0c34a85a1127d033efab7 /unittests/Solver
parente6ba74cf608cf733916f0df2471c6a5fc5a804cf (diff)
downloadklee-37694e11c7a767105244ec563b061d13f0779f05.tar.gz
Add some of the basic plumbing required to support a Z3 solver in KLEE.
Diffstat (limited to 'unittests/Solver')
-rw-r--r--unittests/Solver/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/unittests/Solver/Makefile b/unittests/Solver/Makefile
index 1d3d609e..4b58628f 100644
--- a/unittests/Solver/Makefile
+++ b/unittests/Solver/Makefile
@@ -13,4 +13,8 @@ ifneq ($(ENABLE_STP),0)
   LIBS += $(STP_LDFLAGS)
 endif
 
+ifneq ($(ENABLE_Z3),0)
+  LIBS += $(Z3_LDFLAGS)
+endif
+
 include $(PROJ_SRC_ROOT)/MetaSMT.mk