make libmedia.so beos compatible (including several public headers)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15956 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-01-15 21:59:21 +00:00
parent 7316ee50f0
commit 843a7d9da4
1 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,20 @@
SubDir HAIKU_TOP src kits media ;
SetSubDirSupportedPlatformsBeOSCompatible ;
if $(TARGET_PLATFORM) != haiku {
UseHeaders [ FDirName $(HAIKU_TOP) headers os media ] : true ;
# We need the public media headers also when not compiling for Haiku.
UseHeaders [ FDirName $(HAIKU_TOP) headers os ] : true ;
# We need the public headers also when not compiling for Haiku.
UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
# We need the public posix headers also when not compiling for Haiku.
UseHeaders [ FDirName $(HAIKU_TOP) headers os support ] : true ;
# We need the public support headers also when not compiling for Haiku.
UseHeaders [ FDirName $(HAIKU_TOP) headers os app ] : true ;
# We need the public app headers also when not compiling for Haiku.
}
UsePrivateHeaders media ;
UsePrivateHeaders shared ;