xref: /haiku/src/tests/add-ons/print/pdf/linepathbuilder/Jamfile (revision a5a3b2d9a3d95cbae71eaf371708c73a1780ac0d)
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 [ TargetLibsupc++ ] 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