Add an rdef for the keymap command line applet to specify background app so it doesn't pop up in Deskbar when being executed (especially annoying during Haiku builds).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38093 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2010-08-14 01:44:46 +00:00
parent c3d88d5160
commit cdd17fcb56
3 changed files with 6 additions and 1 deletions

View File

@ -18,6 +18,7 @@ ResComp $(haiku-utils_rsrc) : [ FGristFiles haiku-utils.rdef ] ;
AddResources checkitout : checkitout.rdef ;
AddResources fortune : fortune.rdef ;
AddResources hey : hey.rdef ;
AddResources keymap : keymap.rdef ;
AddResources mimeset : mimeset.rdef ;
AddResources mountvolume : mountvolume.rdef ;
AddResources notify : notify.rdef ;

View File

@ -6,4 +6,5 @@ UsePrivateHeaders shared storage ;
BinCommand keymap :
main.cpp
Keymap.cpp
: be libshared.a $(TARGET_LIBSUPC++) ;
: be libshared.a $(TARGET_LIBSUPC++)
: keymap.rdef ;

View File

@ -0,0 +1,3 @@
resource app_signature "application/x-vnd.Haiku-keymap-cli";
resource app_flags B_MULTIPLE_LAUNCH|B_BACKGROUND_APP;