Convert more test cases to scons
[apps/low-level-can-service.git] / tests / SConstruct
1 env = DefaultEnvironment()
2
3 # Add the builders defined in site_init.py
4 add_nanopb_builders(env)
5
6 # Path to the files shared by tests, and to the nanopb core.
7 env.Append(CPPPATH = ["#../", "#common"])
8
9 # Path for finding nanopb.proto
10 env.Append(PROTOCPATH = ['#../generator', '/usr/include', '.'])
11
12 # Define the include path to find nanopb.proto
13 env.Append(PROTOCPATH = ['#../generator', '/usr/include', '.'])
14
15 # Now include the SConscript files from all subdirectories
16 SConscript(Glob('*/SConscript'), exports = 'env')
17