Jamfile.v2 990 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Copyright Oliver Kowalke 2014.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. # For more information, see http://www.boost.org/
  6. import common ;
  7. import feature ;
  8. import indirect ;
  9. import modules ;
  10. import os ;
  11. import toolset ;
  12. project boost/coroutine2/example
  13. : requirements
  14. <library>/boost/context//boost_context
  15. <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
  16. <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
  17. <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
  18. <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
  19. <link>static
  20. <threading>multi
  21. ;
  22. exe fibonacci
  23. : fibonacci.cpp
  24. ;
  25. exe same_fringe
  26. : same_fringe.cpp
  27. ;
  28. exe layout
  29. : layout.cpp
  30. ;
  31. exe parser
  32. : parser.cpp
  33. ;
  34. exe segmented
  35. : segmented.cpp
  36. ;