git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@4 52acb1d6-8a22-11de-b505-999d5b087335
33 lines
533 B
Plaintext
33 lines
533 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 ;
|
|
|
|
if $(UNIX)
|
|
{
|
|
switch $(JAMUNAME)
|
|
{
|
|
case SunOS* :
|
|
{
|
|
SOCKET_LIBS = libsocket libnsl ;
|
|
}
|
|
}
|
|
}
|
|
|
|
lib secondlife
|
|
: [ glob src/*.cpp ]
|
|
openssl
|
|
libcrypto
|
|
boostthread
|
|
$(SOCKET_LIBS)
|
|
: <threading>multi
|
|
;
|
|
|
|
build-project test_app ;
|