Files
haiku-beta6/src/tools/cppunit/Jamfile
T

56 lines
1.3 KiB
Plaintext
Raw Normal View History

2002-07-09 21:43:03 +00:00
SubDir OBOS_TOP src tools cppunit ;
2002-07-09 12:24:59 +00:00
UseHeaders [ FDirName $(OBOS_TOP) headers tools elfsymbolpatcher ] ;
2002-07-09 12:24:59 +00:00
rule CppUnitLibrary
{
# CppUnitLibrary <sources> ;
local _lib = libcppunit.so ;
UseCppUnitHeaders ;
SetupObjectsDir ;
MakeLocateObjects [ FGristFiles $(<) ] ;
2003-10-30 21:02:21 +00:00
BuildPlatformMain $(_lib) : $(<) ;
2002-07-09 12:24:59 +00:00
MakeLocate $(_lib) : /boot/home/config/lib ;
LINKFLAGS on $(_lib) = $(LINKFLAGS) -nostart -Xlinker -soname=\"$(_lib)\" ;
}
CppUnitLibrary
SemaphoreSyncObject.cpp
TestApp.cpp
2002-07-09 12:24:59 +00:00
TestCase.cpp
TestListener.cpp
2002-07-09 12:24:59 +00:00
TestShell.cpp
2002-07-15 06:51:17 +00:00
TestSuite.cpp
TestUtils.cpp
ThreadedTestCase.cpp
2002-07-09 12:24:59 +00:00
cppunit/Asserter.cpp
cppunit/CompilerOutputter.cpp
cppunit/Exception.cpp
cppunit/NotEqualException.cpp
cppunit/RepeatedTest.cpp
cppunit/SourceLine.cpp
cppunit/SynchronizedObject.cpp
cppunit/TestAssert.cpp
cppunit/TestCase.cpp
cppunit/TestFactoryRegistry.cpp
cppunit/TestFailure.cpp
cppunit/TestResult.cpp
cppunit/TestResultCollector.cpp
cppunit/TestRunner.cpp
cppunit/TestSetUp.cpp
cppunit/TestSucessListener.cpp
cppunit/TestSuite.cpp
cppunit/TextOutputter.cpp
cppunit/TextTestProgressListener.cpp
cppunit/TextTestResult.cpp
cppunit/TypeInfoHelper.cpp
cppunit/XmlOutputter.cpp
;
LinkSharedOSLibs libcppunit.so :
stdc++.r4
/boot/develop/lib/x86/libbe.so
libelfsymbolpatcher.a
2002-07-09 12:24:59 +00:00
;