Jamfile.v2 648 B

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright Oliver Kowalke 2009.
  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/fiber/performance/thread
  13. : requirements
  14. <link>static
  15. <threading>multi
  16. <optimization>speed
  17. <variant>release
  18. ;
  19. exe skynet_async
  20. : skynet_async.cpp
  21. ;
  22. exe skynet_std
  23. : skynet_std.cpp
  24. ;
  25. exe skynet_pthread
  26. : skynet_pthread.cpp
  27. ;