xref: /haiku/src/tests/kits/opengl/demos/gears/Jamfile (revision 4466b89c65970de4c7236ac87faa2bee4589f413)
1SubDir HAIKU_TOP src tests kits opengl demos gears ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5if $(TARGET_PLATFORM) != haiku {
6	# Needed for <GL/glut.h>, not present in R5.
7	# Unfortunately we also get the other headers there,
8	# that we don't really want.
9	UsePublicHeaders opengl ;
10}
11
12SimpleTest GLGears :
13	gears.c
14	: be GL
15;
16