xref: /haiku/src/tests/libs/alm/Jamfile (revision cad0c434c7585bd21548499b2fcdf347c44b8074)
1SubDir HAIKU_TOP src tests libs alm ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5UseLibraryHeaders lp_solve linprog alm ;
6UsePrivateHeaders shared ;
7
8
9Application ALMHelloWorld :
10	HelloWorld.cpp
11	:
12	be liblpsolve55.so libalm.so $(TARGET_LIBSUPC++)
13;
14
15Application ALMViews :
16	Views.cpp
17	:
18	be liblpsolve55.so be libalm.so $(TARGET_LIBSUPC++)
19;
20
21Application ALMPinwheel :
22	Pinwheel.cpp
23	:
24	be liblpsolve55.so be libalm.so $(TARGET_LIBSUPC++)
25;
26
27Application ALMAreas :
28	Areas.cpp
29	:
30	be liblpsolve55.so be libalm.so $(TARGET_LIBSUPC++)
31;
32
33Application ALMTableDemo :
34	TableDemo.cpp
35	:
36	be liblpsolve55.so be libalm.so $(TARGET_LIBSUPC++)
37;
38
39Application ALMOperator :
40	OperatorLayout.cpp
41	:
42	be liblpsolve55.so be libalm.so $(TARGET_LIBSTDC++)
43;
44