Files
libremetaverse/Jamfile
John Hurliman f78b5d5b3f * Updated keywords.txt file to Second Life 1.10.1.0
* Removed test_app, replaced with examples directory
* Added sldump to examples. Uses boost.program_options and dumps packets to the console in a readable format
* Minor cleanups in the library

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

34 lines
616 B
Plaintext

project libsecondlife
: requirements <include>include <include>F:\\Boost\\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 ]
libcurl
boostthread
$(SOCKET_LIBS)
: <threading>multi
<variant>debug:<define>DEBUG
;
build-project examples/sldump ;