jamfile3
来自「boost库提供标准的C++ API 配合dev c++使用,功能更加强大」· 代码 · 共 38 行
TXT
38 行
# This Jamfile is the same as Jamfile2, except that
# it tries to access prebuilt targets using absolute
# paths. It used to be broken on Windows.
import modules ;
local dll-suffix = so ;
if [ modules.peek : OS ] in CYGWIN NT
{
if $toolset = gcc
{
dll-suffix = dll ;
}
else
{
dll-suffix = lib ;
}
}
project ext ;
# Assumed bjam was invoked from the project root
local pwd = [ PWD ] ;
lib a :
: <file>$(pwd)/ext/bin/$toolset/debug/a.$(dll-suffix) <variant>debug
:
: <include>debug
;
lib a :
: <file>$(pwd)/ext/bin/$toolset/release/a.$(dll-suffix) <variant>release
:
: <include>release
;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?