diff options
author | Lee Zher Huei <lee.zh.92@gmail.com> | 2015-07-24 01:18:46 +0100 |
---|---|---|
committer | Lee Zher Huei <lee.zh.92@gmail.com> | 2015-07-24 01:18:46 +0100 |
commit | ef005d4f64d2ee2b35185d4fbdf2aea684cd4966 (patch) | |
tree | 5653f85ff2761b5b26dc814b135858dc668954b3 /drivers/nrex/SCsub | |
parent | f697ec2fe022583dde5f3ae650f49cfd7f237c33 (diff) |
Regex library Nrex initial port
Diffstat (limited to 'drivers/nrex/SCsub')
-rw-r--r-- | drivers/nrex/SCsub | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/nrex/SCsub b/drivers/nrex/SCsub new file mode 100644 index 0000000000..2441d3061b --- /dev/null +++ b/drivers/nrex/SCsub @@ -0,0 +1,9 @@ + +Import('env') + +sources = [ + 'nrex.cpp', + 'regex.cpp', +] +env.add_source_files(env.drivers_sources, sources) + |