⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jamfile

📁 boost库提供标准的C++ API 配合dev c++使用,功能更加强大
💻
字号:
# 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.
#

subproject libs/regex/test/auto-link-test ;

# bring in the rules for testing
import testing ;

run 
   # sources
   <template>../../build/regex-options
   ../regress/parse.cpp
   ../regress/regress.cpp 
   ../regress/tests.cpp
   <lib>../../../test/build/boost_prg_exec_monitor
:
:  # input files
   ../regress/tests.txt
:  # requirements
   <library-path>../../../../stage/lib
   <define>BOOST_LIB_DIAGNOSTIC=1
:  # program name
   regex_regress
          
;

run 
   # sources
   <template>../../build/regex-options
   ../regress/parse.cpp
   ../regress/regress.cpp 
   ../regress/tests.cpp
   <lib>../../../test/build/boost_prg_exec_monitor
:
:  # input files
   ../regress/tests.txt
:  # requirements
   <library-path>../../../../stage/lib
   <define>TEST_UNICODE=1
   <define>BOOST_LIB_DIAGNOSTIC=1
:  # program name
   wide_regex_regress
          
;

# and now the dll versions:

run 
   # sources
   <template>../../build/regex-options
   ../regress/parse.cpp
   ../regress/regress.cpp 
   ../regress/tests.cpp
   <lib>../../../test/build/boost_prg_exec_monitor
:
:  # 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
          
;

run 
   # sources
   <template>../../build/regex-options
   ../regress/parse.cpp
   ../regress/regress.cpp 
   ../regress/tests.cpp
   <lib>../../../test/build/boost_prg_exec_monitor
:
:  # input files
   ../regress/tests.txt
:  # requirements
   <define>BOOST_ALL_DYN_LINK=1
   <runtime-link>dynamic
   <library-path>../../../../stage/lib
   <define>TEST_UNICODE=1
   <define>BOOST_LIB_DIAGNOSTIC=1
:  # program name
   wide_regex_regress_dll
          
;


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -