jamfile.v2

来自「boost库提供标准的C++ API 配合dev c++使用,功能更加强大」· V2 代码 · 共 44 行

V2
44
字号
# Boost Interval Library test Jamfile
#
# Copyright Guillaume Melquiond 2003
# Permission to use, copy, modify, sell, and distribute this software
# is hereby granted without fee provided that the above copyright notice
# appears in all copies and that both that copyright notice and this
# permission notice appear in supporting documentation.
#
# None of the above authors make any representation about the
# suitability of this software for any purpose. It is provided "as
# is" without express or implied warranty.
#
# $Id: Jamfile.v2,v 1.1 2003/09/29 16:36:56 vladimir_prus Exp $

project
    : source-location $(BOOST_ROOT)
    ;

# bring in rules for testing
import testing ;

{
  test-suite "interval" :
    [ compile libs/numeric/interval/test/integer.cpp ]

    [ run libs/numeric/interval/test/add.cpp      ]
    [ run libs/numeric/interval/test/det.cpp      ]
    [ run libs/numeric/interval/test/fmod.cpp     ]
    [ run libs/numeric/interval/test/mul.cpp      ]
    [ run libs/numeric/interval/test/overflow.cpp ]
    [ run libs/numeric/interval/test/pi.cpp       ]
    [ run libs/numeric/interval/test/pow.cpp      ]

    [ run libs/numeric/interval/test/cmp.cpp
        ../../../test/build//boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/cmp_exp.cpp
        ../../../test/build//boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/cmp_lex.cpp
        ../../../test/build//boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/test_float.cpp
        ../../../test/build//boost_test_exec_monitor ]
  ;
}

⌨️ 快捷键说明

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