From e7b9acd7b1bbb227bd3ff9103212be60a97d9b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Fri, 27 Aug 2004 15:06:21 +0000 Subject: [PATCH] Added test preferences apps MouseTest KeyboardTest KeymapTest git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8677 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/servers/input/prefs/Jamfile | 78 +++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 src/tests/servers/input/prefs/Jamfile diff --git a/src/tests/servers/input/prefs/Jamfile b/src/tests/servers/input/prefs/Jamfile new file mode 100644 index 0000000000..33439be7a7 --- /dev/null +++ b/src/tests/servers/input/prefs/Jamfile @@ -0,0 +1,78 @@ +SubDir OBOS_TOP src tests servers input prefs ; + +UsePrivateHeaders interface ; +UsePrivateHeaders app ; +UsePrivateHeaders input ; + +AddResources KeymapTest : Keymap.rdef ; + +if $(COMPILE_FOR_R5) { + SubDirC++Flags -DCOMPILE_FOR_R5 ; +} + +Preference KeymapTest : + KeymapApplication.cpp + KeymapWindow.cpp + KeymapListItem.cpp + Keymap.cpp + KeymapTextView.cpp + + InterfaceDefs.cpp + Input.cpp + : be tracker ; + +SEARCH on [ FGristFiles + KeymapApplication.cpp + KeymapWindow.cpp + KeymapListItem.cpp + Keymap.cpp + KeymapTextView.cpp + Keymap.rdef ] + = [ FDirName $(OBOS_TOP) src prefs keymap ] ; + +AddResources KeyboardTest : Keyboard.rsrc ; + +Preference KeyboardTest : + Keyboard.cpp + KeyboardSettings.cpp + KeyboardView.cpp + KeyboardWindow.cpp + + InterfaceDefs.cpp + Input.cpp + : translation be ; + +SEARCH on [ FGristFiles + Keyboard.cpp + KeyboardSettings.cpp + KeyboardView.cpp + KeyboardWindow.cpp + Keyboard.rsrc ] + = [ FDirName $(OBOS_TOP) src prefs keyboard ] ; + +AddResources MouseTest : Mouse.rdef ; + +Preference MouseTest : + Mouse.cpp + MouseSettings.cpp + MouseWindow.cpp + MouseView.cpp + SettingsView.cpp + + InterfaceDefs.cpp + Input.cpp + : translation be + ; + +SEARCH on [ FGristFiles + Mouse.cpp + MouseSettings.cpp + MouseWindow.cpp + MouseView.cpp + SettingsView.cpp + Mouse.rdef + ] + = [ FDirName $(OBOS_TOP) src prefs mouse ] ; + +SEARCH on [ FGristFiles InterfaceDefs.cpp Input.cpp ] + = [ FDirName $(OBOS_TOP) src kits interface ] ;