Add strdiff_storage to list of build targets of SCons

This commit is contained in:
Wiktor Lawski 2020-09-21 21:25:20 +02:00
parent ca3fa6846a
commit ea5975a080

View File

@ -37,6 +37,7 @@ targets = { 'strdiff' : ['strdiff.cpp', 'common.cpp'], # diff between two
'fpatch' : ['fpatch.cpp', 'common.cpp'], # file patch program using dtl 'fpatch' : ['fpatch.cpp', 'common.cpp'], # file patch program using dtl
'st2ses' : ['st2ses.cpp', 'common.cpp'], # convert SES format file to SES instance 'st2ses' : ['st2ses.cpp', 'common.cpp'], # convert SES format file to SES instance
'strdiff_cp' : ['strdiff_cp.cpp', 'common.cpp'], # diff between two string sequences with custom printer 'strdiff_cp' : ['strdiff_cp.cpp', 'common.cpp'], # diff between two string sequences with custom printer
'strdiff_storage' : ['strdiff_storage.cpp', 'common.cpp'], # diff between two string sequences with custom storage
} }
[ env.Program(target, targets[target]) for target in targets ] [ env.Program(target, targets[target]) for target in targets ]