fixed adding file problem
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / websocketpp-0.7.0 / examples / dev / SConscript
1 ## Main development example
2 ##
3
4 Import('env')
5 Import('env_cpp11')
6 Import('boostlibs')
7 Import('platform_libs')
8 Import('polyfill_libs')
9
10 env_cpp11 = env_cpp11.Clone ()
11
12 prgs = []
13
14 if env_cpp11.has_key('WSPP_CPP11_ENABLED'):
15    BOOST_LIBS_CPP11 = boostlibs(['unit_test_framework','system','timer','chrono'],env_cpp11) + [platform_libs] + [polyfill_libs]
16    prgs += env_cpp11.Program('main', ["main.cpp"], LIBS = BOOST_LIBS_CPP11)
17
18 Return('prgs')