From 139a2f60fb7a5b95cecfd37d3d468497253b33a3 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 18 Aug 2001 11:50:48 +0000 Subject: [PATCH] Updated build system (more or less works now) [SVN r10890] --- example/jgrep/vc6.mak | 3 +- example/timer/vc6.mak | 3 +- test/Jamfile | 65 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 test/Jamfile diff --git a/example/jgrep/vc6.mak b/example/jgrep/vc6.mak index 7b9ae60c..a3baadd4 100644 --- a/example/jgrep/vc6.mak +++ b/example/jgrep/vc6.mak @@ -4,7 +4,8 @@ # jgrep.exe: main.cpp jgrep.cpp jgrep.h - cl -GX -GR /Oityb1 /GF /Gy -I..\..\..\..\ jgrep.cpp main.cpp /link /LIBPATH:..\..\build\vc6 user32.lib + cl -GX -GR /Oityb1 /GF /Gy -I..\..\..\..\ jgrep.cpp main.cpp /link /LIBPATH:..\..\build\vc6 + diff --git a/example/timer/vc6.mak b/example/timer/vc6.mak index 5b6bf867..7ef568f5 100644 --- a/example/timer/vc6.mak +++ b/example/timer/vc6.mak @@ -3,7 +3,7 @@ # CXX=cl CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./ -LIBS=/link /LIBPATH:..\..\build\vc6 kernel32.lib user32.lib +LIBS=/link /LIBPATH:..\..\build\vc6 EXE=.exe OBJ=.obj @@ -31,3 +31,4 @@ timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP) + diff --git a/test/Jamfile b/test/Jamfile new file mode 100644 index 00000000..72d74442 --- /dev/null +++ b/test/Jamfile @@ -0,0 +1,65 @@ +subproject libs/regex/test ; + + +exe regress : regress/parse.cpp regress/regress.cpp regress/tests.cpp + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + : + debug + dynamic + ; + +exe wregress : regress/parse.cpp regress/regress.cpp regress/tests.cpp + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + TEST_UNICODE=1 + : + debug + dynamic + ; + +exe posix_api_check_c : c_compiler_checks/posix_api_check.c + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + : + debug + dynamic + ; + +exe wide_posix_api_check_c : c_compiler_checks/wide_posix_api_check.c + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + : + debug + dynamic + ; + +exe posix_api_check : c_compiler_checks/posix_api_check.cpp + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + : + debug + dynamic + ; + +exe wide_posix_api_check : c_compiler_checks/wide_posix_api_check.cpp + ../build/libboost_regex$(SUFLIB) + : + $(BOOST_ROOT) + BOOST_RE_NO_LIB=1 + : + debug + dynamic + ; + +