From d4ebd51785142ce7e511244d2a0ba5dc701dacfc Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 24 Feb 2003 00:43:03 +0000 Subject: [PATCH] We build a separate libdiskdevice.so now, which will be integrated into libopenbeos, when the GUI stuff there is working. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2821 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/storage/Jamfile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/kits/storage/Jamfile b/src/kits/storage/Jamfile index 730a74bbe5..861e6c5565 100644 --- a/src/kits/storage/Jamfile +++ b/src/kits/storage/Jamfile @@ -1 +1,39 @@ SubDir OBOS_TOP src kits storage ; + +UsePrivateHeaders $(DOT) ; +UsePrivateHeaders app ; +UsePrivateHeaders shared ; +UsePrivateHeaders storage ; + +SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kernel libroot os ] + [ FDirName $(OBOS_TOP) src kits app ] + [ FDirName $(OBOS_TOP) src kits storage ] ; + +# We need to keep the DiskDevice API out of libopenbeos as long as the +# Interface Kit is not fully functional (at least the part we are using). +# So, we build a separate library. +# +SharedLibrary diskdevice + : AddOnImage.cpp + DiskDevice.cpp + DiskDeviceList.cpp + DiskDevicePrivate.cpp + DiskDeviceRoster.cpp + DiskDeviceVisitor.cpp + DiskScannerAddOn.cpp + Mime.cpp + Partition.cpp + PartitioningDialog.cpp + RegistrarDefs.cpp +# Roster.cpp + RosterPrivate.cpp + Session.cpp + + # from libroot + # + disk_scanner.cpp + + : libkernelland_emu.so be +; +AbsSymLink libdiskdevice.so : libdiskdevice.so + : /boot/home/config/lib ;