Migrate boost unit test to google test with cmake (ctest)
[anna.git] / source / comm / SConscript
1 Import ('env')
2
3 sources = Glob('*.cpp')
4 sources_transport = Glob('transport/*.cpp')
5 sources_handler = Glob('handler/*.cpp')
6 sources_internal = Glob('internal/*.cpp')
7
8 source_files = [
9   sources,
10   sources_transport,
11   sources_handler,
12   sources_internal,
13 ]
14
15 result = env.StaticLibrary ('anna_comm', source_files);
16
17 Return ('result')
18