jamfile

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

TXT
33
字号
# Signals library

# Copyright (C) 2001-2003 Douglas Gregor

# Permission to copy, use, sell and distribute this software is granted 
# provided this copyright notice appears in all copies. Permission to modify 
# the code and to distribute modified code is granted provided this copyright 
# notice appears in all copies, and a notice that the code was modified is 
# included with the copyright notice. This software is provided "as is" 
# without express or implied warranty, and with no claim as to its suitability 
# for any purpose. 

# For more information, see http://www.boost.org/


# Testing Jamfile autogenerated from XML source
subproject libs/conversion/test ;

# bring in rules for testing
import testing ;

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

{
  test-suite conversion
      : [ run implicit_cast.cpp ]
        [ compile-fail implicit_cast_fail.cpp ]
        [ run ../cast_test.cpp ]
        [ run ../lexical_cast_test.cpp ]
      ;
}
      

⌨️ 快捷键说明

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