Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ereOn committed Mar 31, 2014
1 parent 02d3e87 commit 60831cf
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libs/asiotap/SConscript
Expand Up @@ -7,7 +7,9 @@ env = env.Clone()
local_include_dir = Dir(os.path.join('include', name))
env.Prepend(CPPPATH=[local_include_dir])

sources = list(set(env.RGlob('src', '*.cpp')) - set(env.RGlob(os.path.join('src', 'windows'), '*.cpp')))

includes = env.RInstall(dirs['root'], local_include_dir, ['*.hpp'])
library = env.StaticLibrary(target=os.path.join(str(dirs['lib']), name), source=env.RGlob('src', '*.cpp'))
library = env.StaticLibrary(target=os.path.join(str(dirs['lib']), name), source=list(sources))

Return('library includes')
1 change: 1 addition & 0 deletions samples/asiotap/endpoint/SConscript
Expand Up @@ -3,6 +3,7 @@ import os

libraries = [
'asiotap',
'boost_system',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/asiotap/proxy/SConscript
Expand Up @@ -3,6 +3,7 @@ import os

libraries = [
'asiotap',
'boost_system',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/asiotap/routes/SConscript
Expand Up @@ -3,6 +3,7 @@ import os

libraries = [
'asiotap',
'boost_system',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/asiotap/tap/SConscript
Expand Up @@ -3,6 +3,7 @@ import os

libraries = [
'asiotap',
'boost_system',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/asiotap/tun/SConscript
Expand Up @@ -3,6 +3,7 @@ import os

libraries = [
'asiotap',
'boost_system',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/fscp/client/SConscript
Expand Up @@ -6,6 +6,7 @@ libraries = [
'cryptoplus',
'boost_thread',
'boost_system',
'crypto',
]

Import('env dirs name')
Expand Down
1 change: 1 addition & 0 deletions samples/fscp/schat/SConscript
Expand Up @@ -6,6 +6,7 @@ libraries = [
'cryptoplus',
'boost_thread',
'boost_system',
'crypto',
]

Import('env dirs name')
Expand Down

0 comments on commit 60831cf

Please sign in to comment.