Basic test runner
This commit is contained in:
parent
a0edcab26d
commit
b9a582caf4
3 changed files with 24 additions and 1 deletions
|
@ -18,8 +18,12 @@ for d in subdirs:
|
|||
|
||||
files = [
|
||||
# TODO: Put files here.
|
||||
'main.cc',
|
||||
]
|
||||
|
||||
objs = []
|
||||
for f in files:
|
||||
objs.append(env.Object(f))
|
||||
|
||||
# TODO: Add the library target for the package to test to LIBS.
|
||||
env.Program('test', objs, LIBS=['gtest'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue