mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-13 17:06:31 +01:00
13 lines
182 B
Text
13 lines
182 B
Text
|
|
# -*- python -*-
|
||
|
|
|
||
|
|
import os
|
||
|
|
import os.path
|
||
|
|
import glob
|
||
|
|
|
||
|
|
Import('env')
|
||
|
|
sanitycheck = env.Clone()
|
||
|
|
sc = sanitycheck.Program('sanityCheck', ['main.cpp', 'systemtest.cpp'])
|
||
|
|
|
||
|
|
Default(sc)
|
||
|
|
|