xref: /haiku/src/preferences/virtualmemory/Jamfile (revision 0562493379cd52eb7103531f895f10bb8e77c085)
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