]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/polygon/example/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / polygon / example / Jamfile.v2
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
6 import cast ;
7 import testing ;
8
9 lib opengl : : <name>opengl32 ;
10
11 project voronoi_example
12 :
13 requirements
14 <include>.
15 <toolset>msvc:<asynch-exceptions>on
16 <library>$(BOOST_ROOT)/libs/timer/build//boost_timer
17 ;
18
19 exe voronoi-visualizer
20 :
21 voronoi_visualizer.cpp
22 [ cast _ moccable-cpp : voronoi_visualizer.cpp ]
23 /qt//QtOpenGL
24 :
25 <target-os>windows:<library>opengl
26 ;
27
28 alias "basic-tutorial"
29 :
30 [ run voronoi_basic_tutorial.cpp ]
31 ;
32
33 alias "advanced-tutorial"
34 :
35 [ run voronoi_advanced_tutorial.cpp ]
36 ;
37
38 alias "documentation-examples"
39 :
40 [ run gtl_custom_point.cpp ]
41 [ run gtl_custom_polygon.cpp ]
42 [ run gtl_custom_polygon_set.cpp ]
43 ;