xref: /haiku/src/tests/kits/opengl/demos/gears/Jamfile (revision c9ad965c81b08802fed0827fd1dd16f45297928a)
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 libGL.so $(TARGET_LIBSUPC++)
15;
16