xref: /haiku/src/bin/desklink/Jamfile (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1SubDir HAIKU_TOP src bin desklink ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) {
6	UseHeaders [ FDirName $(HAIKU_TOP) headers os interface ] : true ;
7		# We need the public interface headers also when not compiling for Haiku.
8	UseHeaders [ FDirName $(HAIKU_TOP) headers os ] : true ;
9		# We need the public headers also when not compiling for Haiku.
10}
11
12BinCommand desklink :
13	desklink.cpp
14	VolumeSlider.cpp
15	DeskButton.cpp
16	: be libmedia.so
17	: desklink.rdef
18	;
19
20