Jamfile.v2 981 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Copyright Andrii Sydorchuk 2010-2012.
  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. import cast ;
  6. import testing ;
  7. lib opengl : : <name>opengl32 ;
  8. project voronoi_example
  9. :
  10. requirements
  11. <include>.
  12. <toolset>msvc:<asynch-exceptions>on
  13. <library>$(BOOST_ROOT)/libs/timer/build//boost_timer
  14. ;
  15. exe voronoi-visualizer
  16. :
  17. voronoi_visualizer.cpp
  18. [ cast _ moccable-cpp : voronoi_visualizer.cpp ]
  19. /qt//QtOpenGL
  20. :
  21. <target-os>windows:<library>opengl
  22. ;
  23. alias "basic-tutorial"
  24. :
  25. [ run voronoi_basic_tutorial.cpp ]
  26. ;
  27. alias "advanced-tutorial"
  28. :
  29. [ run voronoi_advanced_tutorial.cpp ]
  30. ;
  31. alias "documentation-examples"
  32. :
  33. [ run gtl_custom_point.cpp ]
  34. [ run gtl_custom_polygon.cpp ]
  35. [ run gtl_custom_polygon_set.cpp ]
  36. ;