25 lines
821 B
Python
25 lines
821 B
Python
## endpoint unit tests
|
|
##
|
|
|
|
Import('env')
|
|
Import('env_cpp11')
|
|
Import('boostlibs')
|
|
Import('platform_libs')
|
|
Import('polyfill_libs')
|
|
Import('tls_libs')
|
|
|
|
env = env.Clone ()
|
|
env_cpp11 = env_cpp11.Clone ()
|
|
|
|
BOOST_LIBS = boostlibs(['unit_test_framework','system'],env) + [platform_libs] + [tls_libs]
|
|
|
|
objs = env.Object('endpoint_boost.o', ["endpoint.cpp"], LIBS = BOOST_LIBS)
|
|
prgs = env.Program('test_endpoint_boost', ["endpoint_boost.o"], LIBS = BOOST_LIBS)
|
|
|
|
if env_cpp11.has_key('WSPP_CPP11_ENABLED'):
|
|
BOOST_LIBS_CPP11 = boostlibs(['unit_test_framework','system'],env_cpp11) + [platform_libs] + [polyfill_libs] + [tls_libs]
|
|
objs += env_cpp11.Object('endpoint_stl.o', ["endpoint.cpp"], LIBS = BOOST_LIBS_CPP11)
|
|
prgs += env_cpp11.Program('test_endpoint_stl', ["endpoint_stl.o"], LIBS = BOOST_LIBS_CPP11)
|
|
|
|
Return('prgs')
|