xref: /haiku/src/tests/kits/storage/disk_device/Jamfile (revision 7c44680a3623191910d7fb6617ff897583f2ef60)
1SubDir OBOS_TOP src tests kits storage disk_device ;
2
3UsePrivateHeaders app ;
4UsePrivateHeaders shared ;
5UsePrivateHeaders storage ;
6
7SEARCH_SOURCE += [ FDirName $(OBOS_TOP) src kits app ]
8				 [ FDirName $(OBOS_TOP) src kits storage ] ;
9
10SimpleTest DiskDeviceTest
11	: DiskDeviceTest.cpp
12
13	  # We compile these classes in. If we would link against libopenbeos
14	  # instead, we couldn't use any GUI. At least not at this time.
15	  #
16	  DiskDevice.cpp
17	  DiskDevicePrivate.cpp
18	  DiskDeviceRoster.cpp
19	  DiskDeviceVisitor.cpp
20	  Mime.cpp
21	  Partition.cpp
22	  RegistrarDefs.cpp
23	  RosterPrivate.cpp
24	  Session.cpp
25
26	: be
27;
28