xref: /haiku/src/preferences/virtualmemory/Jamfile (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1SubDir HAIKU_TOP src preferences virtualmemory ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) {
6	DRIVER_SETTINGS = driver_settings.c ;
7}
8
9Preference VirtualMemory :
10	VirtualMemory.cpp
11	SettingsWindow.cpp
12	Settings.cpp
13	$(DRIVER_SETTINGS)
14
15	: be $(TARGET_LIBSTDC++)
16	: VirtualMemory.rdef
17	;
18
19if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) {
20	SEARCH on [ FGristFiles driver_settings.c ] +=
21		[ FDirName $(HAIKU_TOP) src system libroot os ] ;
22}
23