1# Boost.Signals2 example programs 2 3# Copyright Michael Caisse 2010 4# Use, modification and 5# distribution is subject to the Boost Software License, Version 6# 1.0. (See accompanying file LICENSE_1_0.txt or copy at 7# http://www.boost.org/LICENSE_1_0.txt) 8 9# For more information, see http://www.boost.org 10 11project : requirements <implicit-dependency>/boost//headers ; 12 13exe hello_world_slot : hello_world_slot.cpp ; 14 15exe hello_world_multi_slot : hello_world_multi_slot.cpp ; 16 17exe ordering_slots : ordering_slots.cpp ; 18 19exe passing_slots : passing_slots.cpp ; 20 21exe extended_slot : extended_slot.cpp ; 22 23exe custom_combiners : custom_combiners.cpp ; 24 25exe disconnect_and_block : disconnect_and_block.cpp ; 26 27exe doc_view : doc_view.cpp ; 28 29exe doc_view_acm : doc_view_acm.cpp ; 30 31exe doc_view_acm_deconstruct : doc_view_acm_deconstruct.cpp ; 32 33exe postconstructor_ex1 : postconstructor_ex1.cpp ; 34 35exe postconstructor_ex2 : postconstructor_ex2.cpp ; 36 37exe predestructor_example : predestructor_example.cpp ; 38 39exe signal_return_value : signal_return_value.cpp ; 40 41exe slot_arguments : slot_arguments.cpp ; 42 43