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