Files
haiku-beta6/src/add-ons/media/media-add-ons/opensound/Jamfile
T
Augustin Cavalier 8a9e1e0d4a Removal of non-Haiku target platform logic from build system (part 1.)
Following recent changes to use libroot_build on Haiku also, it is now
actually impossible to build Haiku components on non-Haiku platforms
(BeOS R5, Dan0, BONE, Zeta), so we can remove any logic related to this.

This is only the first part; still to be removed are:
 * SetSubDirSupportedPlatformsBeOSCompatible
 * HOST_PLATFORM_BEOS_COMPATIBLE
 * TARGET_PLATFORM_BEOS_COMPATIBLE
2017-12-31 16:14:22 -05:00

20 lines
471 B
Plaintext

SubDir HAIKU_TOP src add-ons media media-add-ons opensound ;
SetSubDirSupportedPlatformsBeOSCompatible ;
UsePrivateHeaders media ;
local architectureObject ;
for architectureObject in [ MultiArchSubDirSetup ] {
on $(architectureObject) {
Addon [ MultiArchDefaultGristFiles opensound.media_addon ] :
OpenSoundAddOn.cpp
OpenSoundDevice.cpp
OpenSoundDeviceEngine.cpp
OpenSoundDeviceMixer.cpp
OpenSoundNode.cpp
: be media [ TargetLibsupc++ ]
;
}
}