haiku/src/tests/Jamfile
Ingo Weinhold a101e99aad Added libalm.so and its dependency liblinprog.so. libalm.so provides a
BLayout implementation (BALMLayout) using the Auckland Layout Model
(ALM). The original ALM was implemented by Christof Lutteroth, the
Haiku/C++ version by James Kim.
The code needs some review, but the test programs seem to work fine.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23889 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-02-06 10:51:44 +00:00

35 lines
890 B
Plaintext

SubDir HAIKU_TOP src tests ;
SetSubDirSupportedPlatformsBeOSCompatible ;
AddSubDirSupportedPlatforms libbe_test ;
UnitTestLib libexampletest.so
: ExampleTestAddon.cpp
ExampleTest.cpp
: be $(TARGET_LIBSTDC++)
:
;
UnitTest UnitTester
: UnitTester.cpp
: be $(TARGET_LIBSTDC++)
: UnitTester.rsrc
;
# Install libbe and other libraries for target platform libbe_test.
if $(TARGET_PLATFORM) = libbe_test {
local libs = libbe_haiku.so libbeadapter.so libtranslation.so ;
HaikuInstall install-unittest-libs : $(TARGET_UNIT_TEST_LIB_DIR)
: $(libs)
: tests!unittests ;
}
SubInclude HAIKU_TOP src tests add-ons ;
SubInclude HAIKU_TOP src tests apps ;
SubInclude HAIKU_TOP src tests bin ;
SubInclude HAIKU_TOP src tests system ;
SubInclude HAIKU_TOP src tests kits ;
SubInclude HAIKU_TOP src tests libs ;
SubInclude HAIKU_TOP src tests misc ;
SubInclude HAIKU_TOP src tests servers ;