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