📄 jamfile
字号:
# copyright John Maddock 2003
#
# This Jamfile tests the ability of some Windows compilers
# to automatically link to the right lib file,
# it is not generally applicable.
#
R_SOURCE =
basic_tests.cpp
main.cpp
test_alt.cpp
test_anchors.cpp
test_asserts.cpp
test_backrefs.cpp
test_deprecated.cpp
test_emacs.cpp
test_escapes.cpp
test_grep.cpp
test_locale.cpp
test_mfc.cpp
test_non_greedy_repeats.cpp
test_perl_ex.cpp
test_replace.cpp
test_sets.cpp
test_simple_repeats.cpp
test_tricky_cases.cpp
test_icu.cpp
test_unicode.cpp
test_overloads.cpp
test_operators.cpp
;
subproject libs/regex/test/auto-link-test ;
# bring in the rules for testing
import testing ;
run
# sources
<template>../../build/regex-options
<template>../../build/regex-test-options
../regress/$(R_SOURCE)
:
: # input files
../regress/tests.txt
: # requirements
<library-path>../../../../stage/lib
<define>BOOST_LIB_DIAGNOSTIC=1
: # program name
regex_regress
;
# and now the dll versions:
run
# sources
<template>../../build/regex-options
<template>../../build/regex-test-options
../regress/$(R_SOURCE)
:
: # input files
../regress/tests.txt
: # requirements
<library-path>../../../../stage/lib
<define>BOOST_ALL_DYN_LINK=1
<runtime-link>dynamic
<define>BOOST_LIB_DIAGNOSTIC=1
: # program name
regex_regress_dll
;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -