xref: /haiku/src/tests/add-ons/print/pdf/linepathbuilder/Jamfile (revision b55a57da7173b9af0432bd3e148d03f06161d036)
1SubDir HAIKU_TOP src tests add-ons print pdf linepathbuilder ;
2
3SubDirHdrs $(HAIKU_TOP) src add-ons print drivers pdf source ;
4
5AddResources LinePathBuilder : LinePathBuilder.rdef ;
6
7local sources =
8	LPBApp.cpp
9	PathView.cpp
10	SubPath.cpp
11	LinePathBuilder.cpp
12;
13
14SimpleTest LinePathBuilder
15	: $(sources)
16	: be $(TARGET_LIBSUPC++) root
17;
18
19# Tell Jam where to find these sources:
20SEARCH on [ FGristFiles LinePathBuilder.cpp SubPath.cpp ]
21	= [ FDirName $(HAIKU_TOP) src add-ons print drivers pdf source ] ;
22
23
24