* 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
36 lines
609 B
Plaintext
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 ;
|