1SubDir HAIKU_TOP src apps glteapot ; 2UseBuildFeatureHeaders glu ; 3UseBuildFeatureHeaders mesa ; 4 5SetSubDirSupportedPlatformsBeOSCompatible ; 6 7local sources = 8 FPS.cpp 9 GLObject.cpp 10 ObjectView.cpp 11 error.cpp 12 TeapotWindow.cpp 13 TeapotApp.cpp 14; 15 16Includes [ FGristFiles $(sources) ] : 17 [ BuildFeatureAttribute glu : headers ] 18 [ BuildFeatureAttribute mesa : headers ] 19 ; 20 21Application GLTeapot : 22 $(sources) 23 : 24 be game localestub [ TargetLibsupc++ ] 25 [ BuildFeatureAttribute glu : library ] 26 [ BuildFeatureAttribute mesa : library ] 27 : GLTeapot.rdef 28; 29 30DoCatalogs GLTeapot : 31 x-vnd.Haiku-GLTeapot 32 : 33 TeapotApp.cpp 34 TeapotWindow.cpp 35; 36