xref: /haiku/src/add-ons/screen_savers/flurry/Jamfile (revision 74252cefbcf266291fb069466189b4734eb05455)
1SubDir HAIKU_TOP src add-ons screen_savers flurry ;
2SubDirSysHdrs $(HAIKU_GLU_HEADERS) ;
3SubDirSysHdrs $(HAIKU_MESA_HEADERS) ;
4
5AddResources Message : Flurry.rdef ;
6
7local sources =
8	Flurry.cpp
9	Smoke.cpp
10	Spark.cpp
11	Star.cpp
12	Texture.cpp
13;
14
15Includes [ FGristFiles $(sources) ] : $(HAIKU_MESA_HEADERS_DEPENDENCY) ;
16	# Dependency needed to trigger downloading/unzipping the package before
17	# compiling the files.
18
19ScreenSaver Flurry :
20	$(sources) :
21	be screensaver GL libshared.a $(HAIKU_LOCALE_LIBS) $(TARGET_LIBSUPC++)
22;
23
24DoCatalogs Flurry :
25	x-vnd.Haiku-FlurryScreensaver
26	:
27	$(sources)
28;
29