xref: /haiku/src/tests/kits/opengl/demos/gears/Jamfile (revision 225b6382637a7346d5378ee45a6581b4e2616055)
1SubDir HAIKU_TOP src tests kits opengl demos gears ;
2UseBuildFeatureHeaders mesa ;
3
4SetSubDirSupportedPlatformsBeOSCompatible ;
5
6if $(TARGET_PLATFORM) != haiku {
7	# Needed for <GL/glut.h>, not present in R5.
8	# Unfortunately we also get the other headers there,
9	# that we don't really want.
10	UsePublicHeaders opengl ;
11}
12
13
14local sources =
15	gears.c
16;
17
18Includes [ FGristFiles $(sources) ] : [ BuildFeatureAttribute mesa : headers ] ;
19
20
21SimpleTest GLGears :
22	$(sources)
23	: be GL
24;
25