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

📄 jamfile

📁 boost库提供标准的C++ API 配合dev c++使用,功能更加强大
💻
字号:
# 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,v 1.5 2003/09/08 17:38:47 david_abrahams Exp $

subproject libs/numeric/interval/test ;

# bring in rules for testing
import testing ;

# Make tests run by default.
DEPENDS all : test ;

{
  # look in BOOST_ROOT for sources first, just in this Jamfile
  local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;

  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
        <lib>../../../test/build/boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/cmp_exp.cpp
        <lib>../../../test/build/boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/cmp_lex.cpp
        <lib>../../../test/build/boost_test_exec_monitor ]
    [ run libs/numeric/interval/test/test_float.cpp
        <lib>../../../test/build/boost_test_exec_monitor ]
  ;
}

⌨️ 快捷键说明

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