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 12:21:48 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2016-01-14 12:30:31 +0000
commitcece05cadf6a624afd188e81720ae7701736a703 (patch)
treedab3e0f57477f584dfa65f0c166bceb118c4551c /unittests/Solver
parent68fa7490713ecf6672684c4398f9c19a101f822a (diff)
downloadklee-cece05cadf6a624afd188e81720ae7701736a703.tar.gz
Refactor the MetaSMT makefile commands into its own file which can
be included by tools that needs to link against MetaSMT. Apart from
making the Makefile code cleaner this allowed the Solver unit test
linking to succeed when not building with STP support.

Unfortunately when using MetaSMT as the core solver the Solver unit
tests do not pass. Clearly no one tried this before... :(
Diffstat (limited to 'unittests/Solver')
-rw-r--r--unittests/Solver/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/Solver/Makefile b/unittests/Solver/Makefile
index 65edbe7a..1d3d609e 100644
--- a/unittests/Solver/Makefile
+++ b/unittests/Solver/Makefile
@@ -12,3 +12,5 @@ include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
 ifneq ($(ENABLE_STP),0)
   LIBS += $(STP_LDFLAGS)
 endif
+
+include $(PROJ_SRC_ROOT)/MetaSMT.mk