summaryrefslogtreecommitdiff
path: root/tests/utils/Makefile.W32
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/Makefile.W32')
-rwxr-xr-xtests/utils/Makefile.W327
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/utils/Makefile.W32 b/tests/utils/Makefile.W32
index ec6f9e7..6e1bb56 100755
--- a/tests/utils/Makefile.W32
+++ b/tests/utils/Makefile.W32
@@ -10,16 +10,19 @@ INCLUDE_CXXFLAGS = \
INCLUDE_DIRS = \
/I. \
/I$(TOPDIR)\src \
+ /I$(TOPDIR)\include \
/I$(TOPDIR)\include\util
INCLUDE_LDFLAGS = \
INCLUDE_LIBS = \
+ $(TOPDIR)/src/libutil/utilstatic.lib
TEST_CPP_BINS = \
test1.exe \
test2.exe \
- test3.exe
+ test3.exe \
+ test4.exe
OBJS =
@@ -28,6 +31,7 @@ OBJS =
test1.exe: test1.obj
test2.exe: test2.obj
test3.exe: test3.obj
+test4.exe: test4.obj
local_all:
@@ -40,3 +44,4 @@ local_test:
@-exec_test test1 "TypeList and TypeTraits"
@-exec_test test2 "TypeInfo C++ demangle"
@-exec_test test3 "Singleton"
+ @-exec_test test4 "StringUtils split"