1SubDir HAIKU_TOP src tests servers app cursor_test ; 2 3AddSubDirSupportedPlatforms libbe_test ; 4 5UseHeaders [ FDirName os app ] ; 6UseHeaders [ FDirName os interface ] ; 7UseHeaders [ FDirName $(SUBDIR) $(DOTDOT) bitmap_drawing ] ; 8 9Application CursorTest : 10 CursorTest.cpp 11 : be [ TargetLibstdc++ ] [ TargetLibsupc++ ] 12; 13 14Application CursorBitmapTest : 15 CursorBitmapTest.cpp 16 : be [ TargetLibstdc++ ] [ TargetLibsupc++ ] 17; 18 19if $(TARGET_PLATFORM) = libbe_test { 20 HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : CursorTest 21 : tests!apps ; 22} 23 24