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