blob: 4b58628feea7805c4b866c4eef620fb03df28ad5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
##===- unittests/Solver/Makefile ---------------------------*- Makefile -*-===##
LEVEL := ../..
include $(LEVEL)/Makefile.config
TESTNAME := Solver
USEDLIBS := kleaverSolver.a kleaverExpr.a kleeSupport.a kleeBasic.a
LINK_COMPONENTS := support
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
ifneq ($(ENABLE_STP),0)
LIBS += $(STP_LDFLAGS)
endif
ifneq ($(ENABLE_Z3),0)
LIBS += $(Z3_LDFLAGS)
endif
include $(PROJ_SRC_ROOT)/MetaSMT.mk
|