jamfile.v2

来自「C++的一个好库。。。现在很流行」· V2 代码 · 共 43 行

V2
43
字号
# Inspect Jamfile

project
    :
    requirements
    <link>static
    <runtime-link>static
    <threading>single
    :
    source-location .. 
    ;

exe inspect
    :
    inspect.cpp license_check.cpp link_check.cpp long_name_check.cpp tab_check.cpp crlf_check.cpp
    copyright_check.cpp minmax_check.cpp
    /boost/filesystem//boost_filesystem
    /boost/regex//boost_regex
    :
    :
    release
    ;

install dist-bin
    :
    inspect
    :
    <install-type>EXE
    <location>../../../dist/bin
    :
    release
    ;

install dist-lib
    :
    inspect
    :
    <install-type>LIB
    <location>../../../dist/lib
    :
    release
    ;

⌨️ 快捷键说明

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