forked from boostorg/regex
Updated build system (more or less works now)
[SVN r10890]
This commit is contained in:
@ -4,7 +4,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
jgrep.exe: main.cpp jgrep.cpp jgrep.h
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
CXX=cl
|
CXX=cl
|
||||||
CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./
|
CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./
|
||||||
LIBS=/link /LIBPATH:..\..\build\vc6 kernel32.lib user32.lib
|
LIBS=/link /LIBPATH:..\..\build\vc6
|
||||||
EXE=.exe
|
EXE=.exe
|
||||||
OBJ=.obj
|
OBJ=.obj
|
||||||
|
|
||||||
@ -31,3 +31,4 @@ timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
65
test/Jamfile
Normal file
65
test/Jamfile
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
subproject libs/regex/test ;
|
||||||
|
|
||||||
|
|
||||||
|
exe regress : regress/parse.cpp regress/regress.cpp regress/tests.cpp
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
exe wregress : regress/parse.cpp regress/regress.cpp regress/tests.cpp
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
<define>TEST_UNICODE=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
exe posix_api_check_c : c_compiler_checks/posix_api_check.c
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
exe wide_posix_api_check_c : c_compiler_checks/wide_posix_api_check.c
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
exe posix_api_check : c_compiler_checks/posix_api_check.cpp
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
exe wide_posix_api_check : c_compiler_checks/wide_posix_api_check.cpp
|
||||||
|
<lib>../build/libboost_regex$(SUFLIB)
|
||||||
|
:
|
||||||
|
<include>$(BOOST_ROOT)
|
||||||
|
<define>BOOST_RE_NO_LIB=1
|
||||||
|
:
|
||||||
|
debug
|
||||||
|
<runtime-link>dynamic
|
||||||
|
;
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user