From 6071ca920926896ae03b17df943506ab597dec52 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sun, 14 Feb 2016 21:08:45 +0100 Subject: [PATCH] Allow to build CharacterMap for the test_app_server. - I needed to test missing glyphs, and none of the available test apps allowed to do so. --- src/apps/charactermap/Jamfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/apps/charactermap/Jamfile b/src/apps/charactermap/Jamfile index 23b8fe5d0b..b4d625a4eb 100644 --- a/src/apps/charactermap/Jamfile +++ b/src/apps/charactermap/Jamfile @@ -1,6 +1,7 @@ SubDir HAIKU_TOP src apps charactermap ; SetSubDirSupportedPlatformsBeOSCompatible ; +AddSubDirSupportedPlatforms libbe_test ; UsePrivateHeaders shared system ; @@ -23,3 +24,8 @@ DoCatalogs CharacterMap : CharacterWindow.cpp UnicodeBlocks.cpp ; + +if $(TARGET_PLATFORM) = libbe_test { + HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : CharacterMap + : tests!apps ; +}