diff options
Diffstat (limited to 'drivers/nrex')
-rw-r--r-- | drivers/nrex/SCsub | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/nrex/SCsub b/drivers/nrex/SCsub index a00c7b86f4..ee39fd2631 100644 --- a/drivers/nrex/SCsub +++ b/drivers/nrex/SCsub @@ -1,7 +1,7 @@ +#!/usr/bin/env python + Import('env') -sources = [ - 'nrex.cpp', - 'regex.cpp', -] -env.add_source_files(env.drivers_sources, sources) +env.add_source_files(env.drivers_sources, "*.cpp") + +Export('env') |