Files
libremetaverse/Jamfile
John Hurliman 2bcf2add62 * Moved more of the login code out of the client and in to the library
* Packet ACKs are sent automatically now
* Converting more pointers to boost::shared_ptr objects
* Completely redesigned Packet class
* PacketBuilder files containing packet construction functions
* Fixed a few of the naming inconsistencies
* test_app is currently dumping real estate sales data

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@12 52acb1d6-8a22-11de-b505-999d5b087335
2006-06-01 08:09:12 +00:00

36 lines
609 B
Plaintext

project libsecondlife
: requirements <include>include
: default-build debug
;
lib openssl : : <name>ssl ;
lib libcrypto : : <name>crypto ;
lib libsocket : : <name>socket ;
lib libnsl : : <name>nsl ;
lib boostthread : : <name>boost_thread ;
lib libcurl : : <name>curl ;
if $(UNIX)
{
switch $(JAMUNAME)
{
case SunOS* :
{
SOCKET_LIBS = libsocket libnsl ;
}
}
}
lib secondlife
: [ glob src/*.cpp ]
openssl
libcrypto
libcurl
boostthread
$(SOCKET_LIBS)
: <threading>multi
<variant>debug:<define>DEBUG
;
build-project test_app ;