From c0c0582462720ed597b00e116506570577614e89 Mon Sep 17 00:00:00 2001 From: shamikam Date: Tue, 7 Nov 2017 15:59:48 +0530 Subject: initial 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..dea8f22 --- /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_Signal_Processing_Toolbox.quit"; +if isfile(fileQuit) then + exec(fileQuit); +end + -- cgit