From d5ae3e7a5f4f3253da9ef718303d1e926e7ee4d8 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 30 May 2016 14:36:03 +0800 Subject: [PATCH] src/Application.vala --- src/Application.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Application.vala b/src/Application.vala index ba26f015c..2892ae309 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -61,7 +61,7 @@ // some testing code. { "list-projects", 0, 0, OptionArg.NONE, ref opt_list_projects, "List Projects", null }, - + { "list-files", 0, 0, OptionArg.NONE, ref opt_list_files, "List Files (in a project", null}, { "bjs", 0, 0, OptionArg.STRING, ref opt_bjs_compile, "convert bjs file", null }, { "bjs-target", 0, 0, OptionArg.STRING, ref opt_bjs_compile_target, "convert bjs file to tareet : vala / js", null }, @@ -77,6 +77,7 @@ public static string opt_bjs_compile_target; public static bool opt_debug = false; public static bool opt_list_projects = false; + public static bool opt_list_files = false; public static string _self; -- 2.39.2