xref: /haiku/src/tests/kits/opengl/demos/gears/Jamfile (revision 163e02d670dd9648692f0280cf542bf1df46776f)
1SubDir HAIKU_TOP src tests kits opengl demos gears ;
2SubDirSysHdrs $(HAIKU_MESA_HEADERS) ;
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) ] : $(HAIKU_MESA_HEADERS_DEPENDENCY) ;
19
20
21SimpleTest GLGears :
22	$(sources)
23	: be GL
24;
25