xref: /haiku/src/apps/glteapot/Jamfile (revision 7a74a5df454197933bc6e80a542102362ee98703)
1SubDir HAIKU_TOP src apps glteapot ;
2SubDirSysHdrs $(HAIKU_MESA_HEADERS) ;
3
4SetSubDirSupportedPlatformsBeOSCompatible ;
5
6# For GCC2
7if $(HAIKU_GCC_VERSION[1]) < 3 {
8	SubDirC++Flags --no-warnings ;
9}
10
11local sources =
12	FPS.cpp
13	GLObject.cpp
14	ObjectView.cpp
15	error.cpp
16	TeapotWindow.cpp
17	TeapotApp.cpp
18;
19
20Includes [ FGristFiles $(sources) ] : $(HAIKU_MESA_HEADERS_DEPENDENCY) ;
21
22Application GLTeapot :
23	$(sources)
24	: be GL game $(HAIKU_LOCALE_LIBS) $(TARGET_LIBSUPC++)
25	: GLTeapot.rdef
26;
27
28DoCatalogs GLTeapot :
29	x-vnd.Haiku-GLTeapot
30	:
31	TeapotApp.cpp
32	TeapotWindow.cpp
33;
34