xref: /haiku/src/apps/pulse/Jamfile (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1SubDir HAIKU_TOP src apps pulse ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5UsePrivateHeaders shared ;
6if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) {
7	UseHeaders [ FDirName $(HAIKU_TOP) headers os kernel ] : true ;
8}
9
10if $(TARGET_PLATFORM) = r5 {
11	SubDirC++Flags -DR5_COMPATIBLE ;
12}
13
14Application Pulse :
15	ConfigView.cpp
16	CPUButton.cpp
17	DeskbarPulseView.cpp
18	MiniPulseView.cpp
19	NormalPulseView.cpp
20	Prefs.cpp
21	PrefsWindow.cpp
22	ProgressBar.cpp
23	PulseApp.cpp
24	PulseView.cpp
25	PulseWindow.cpp
26
27	: be
28	: Pulse.rdef
29;
30