jamfile

来自「Boost provides free peer-reviewed portab」· 代码 · 共 82 行

TXT
82
字号
# copyright John Maddock 2003# Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt.## 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.cppmain.cpptest_alt.cpptest_anchors.cpptest_asserts.cpptest_backrefs.cpptest_deprecated.cpptest_emacs.cpptest_escapes.cpptest_grep.cpptest_locale.cpptest_mfc.cpptest_non_greedy_repeats.cpptest_perl_ex.cpptest_replace.cpptest_sets.cpptest_simple_repeats.cpptest_tricky_cases.cpptest_icu.cpptest_unicode.cpptest_overloads.cpptest_operators.cpp;subproject libs/regex/test/auto-link-test ;# bring in the rules for testingimport 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 + =
减小字号Ctrl + -
显示快捷键?