jamfile

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

TXT
55
字号
# Boost.Signals Library 

# Copyright Douglas Gregor 2001-2003. Use, modification and
# distribution is subject to the Boost Software License, Version
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

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

subproject libs/signals/example ;

exe button_click : <lib>../build/boost_signals
                    button_click.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe difference_connection : <lib>../build/boost_signals
                    difference_connection.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe disconnect_all : <lib>../build/boost_signals
                    disconnect_all.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe first_positive : <lib>../build/boost_signals
                    first_positive.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe maximum : <lib>../build/boost_signals
                    maximum.cpp
                  : <include>$(BOOST_ROOT)
                  ;
exe print_sum_product : <lib>../build/boost_signals
                    print_sum_product.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe quotient_controlling : <lib>../build/boost_signals
                    quotient_controlling.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe quotient_named : <lib>../build/boost_signals
                    quotient_named.cpp
                  : <include>$(BOOST_ROOT)
                  ;

exe no_function : <lib>../build/boost_signals
                  no_function.cpp
                : <include>$(BOOST_ROOT)
                ;

⌨️ 快捷键说明

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