From a6df67e8bcd5159cde27556f4f6a315f8dc2215f Mon Sep 17 00:00:00 2001 From: shamikam Date: Mon, 16 Jan 2017 02:56:17 +0530 Subject: First Commit --- unloader.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 unloader.sce (limited to 'unloader.sce') diff --git a/unloader.sce b/unloader.sce new file mode 100644 index 0000000..9b343b8 --- /dev/null +++ b/unloader.sce @@ -0,0 +1,14 @@ +// This file is released under the 3-clause BSD license. See COPYING-BSD. +// Generated by builder.sce: Please, do not edit this file + +try + getversion("scilab"); +catch + error("Scilab 5.4 or more is required."); +end; + +fileQuit = get_absolute_file_path("unloader.sce") + "etc/" + "FOSSEE_Image_Processing_Toolbox.quit"; +if isfile(fileQuit) then + exec(fileQuit); +end + -- cgit