xref: /haiku/src/tests/add-ons/print/pdf/bezierbounds/Jamfile (revision d5cd5d63ff0ad395989db6cf4841a64d5b545d1d)
1SubDir OBOS_TOP src tests add-ons print pdf bezierbounds ;
2
3SubDirHdrs $(OBOS_TOP) src add-ons print drivers pdf source ;
4
5AddResources BezierBounds : BBApp.rsrc ;
6
7local sources =
8	BBApp.cpp
9	BBView.cpp
10	BezierBounds.cpp
11	SubPath.cpp
12;
13
14SimpleTest BezierBounds
15	: $(sources)
16	: be root
17;
18
19# Tell Jam where to find these sources:
20SEARCH on [ FGristFiles SubPath.cpp ]
21	= [ FDirName $(OBOS_TOP) src add-ons print drivers pdf source ] ;
22