From 10a407287207c52ef21e5df33f016af6242c5e94 Mon Sep 17 00:00:00 2001 From: Tobias Langer Date: Wed, 5 Oct 2016 13:06:18 +0200 Subject: [PATCH] Multiple c++ files can be added to the experiment. --- generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate.py b/generate.py index fe4b464..24b4e39 100755 --- a/generate.py +++ b/generate.py @@ -75,7 +75,7 @@ def main(): parser.add_argument('description', type=str, nargs='+', help='file containing the taskset description.') parser.add_argument('--header', dest='header', type=str, nargs='?', default='./template/config.h', help='path to optional custom header file.') parser.add_argument('--makefile', dest='makefile', type=str, nargs='?', default='./template/Makefile', help='path to optional custom makefile.') - parser.add_argument('--cpp', dest='cpp', type=str, nargs='?', default='./template/experiment.cpp', help='path to optional custom c++ implementation.') + parser.add_argument('--cpp', dest='cpp', type=str, nargs='*', default='./template/experiment.cpp', help='path to optional custom c++ implementation.') args = parser.parse_args() cwd = os.getcwd() -- libgit2 0.26.0