xref: /haiku/src/tests/servers/app/playground/Jamfile (revision 579f1dbca962a2a03df54f69fdc6e9423f91f20e)
1SubDir HAIKU_TOP src tests servers app playground ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4AddSubDirSupportedPlatforms libbe_test ;
5
6UseHeaders [ FDirName os app ] ;
7UseHeaders [ FDirName os interface ] ;
8
9Application Playground :
10	main.cpp
11	ObjectView.cpp
12	ObjectWindow.cpp
13	States.cpp
14	: be $(TARGET_LIBSUPC++) $(HAIKU_LOCALE_LIBS)
15	: Playground.rdef
16;
17
18if ( $(TARGET_PLATFORM) = libbe_test ) {
19	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : Playground
20		: tests!apps ;
21}
22
23DoCatalogs Playground :
24    x-vnd.Haiku-Playground
25    :
26    main.cpp
27    ObjectView.cpp
28    ObjectWindow.cpp
29;
30