From 830f23e8210a1c1c0dbb3d4fb15e75b922810902 Mon Sep 17 00:00:00 2001
From: am0ebe <am0ebe@gmx.de>
Date: Wed, 12 Jan 2022 19:11:04 +0100
Subject: [PATCH] .

---
 .gitignore                           |    3 +-
 camtron.sublime-project              |   61 ++
 examples/CMakeLists.txt              |    4 +-
 examples/ct-examples.sublime-project | 1300 ++++++++++++++++++++++++++
 4 files changed, 1364 insertions(+), 4 deletions(-)
 create mode 100644 camtron.sublime-project
 create mode 100644 examples/ct-examples.sublime-project

diff --git a/.gitignore b/.gitignore
index 11d7fcd..911fd32 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,5 +28,4 @@ _*
 bgslibrary_gui
 .pypirc
 upload.sh
-
-.sublime-workspace
+*.sublime-workspace
diff --git a/camtron.sublime-project b/camtron.sublime-project
new file mode 100644
index 0000000..0d3aaaf
--- /dev/null
+++ b/camtron.sublime-project
@@ -0,0 +1,61 @@
+{
+	"folders":
+	[
+		{
+			"path": ".",
+		}
+	],
+	"settings":
+	{
+		"tab_size": 8,
+		// "cmake":
+		// {
+		// 	"build_folder": "$folder/build",
+		// },
+	},
+	"build_systems":
+	[
+		{
+			"file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$",
+			"name": "camtron (Linux)",
+			"shell_cmd": "make -j8",
+			"syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
+			"variants":
+			[
+				{
+					"name": "clean",
+					"shell_cmd": "make -j8 clean",
+				},
+				{
+					"name": "install/strip",
+					"shell_cmd": "make -j8 install/strip",
+				},
+				{
+					"name": "install/local",
+					"shell_cmd": "make -j8 install/local",
+				},
+				{
+					"name": "bgslibrary",
+					"shell_cmd": "make -j8 bgslibrary",
+				},
+				{
+					"name": "install",
+					"shell_cmd": "make -j8 install",
+				},
+				{
+					"name": "list_install_components",
+					"shell_cmd": "make -j8 list_install_components",
+				},
+				{
+					"name": "rebuild_cache",
+					"shell_cmd": "make -j8 rebuild_cache",
+				},
+				{
+					"name": "bgslibrary_core",
+					"shell_cmd": "make -j8 bgslibrary_core",
+				},
+			],
+			"working_dir": "$folder/build",
+		}
+	],
+}
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index ac47b92..9937c87 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -13,8 +13,8 @@ message(STATUS "BGSLIBRARY WITH PYTHON SUPPORT: ${BGS_PYTHON_SUPPORT}")
 
 if(UNIX)
 # 	set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
-	set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++14")
-# 	set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++2a")
+	# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++14")
+	set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++2a")
 endif(UNIX)
 
 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
diff --git a/examples/ct-examples.sublime-project b/examples/ct-examples.sublime-project
new file mode 100644
index 0000000..e878665
--- /dev/null
+++ b/examples/ct-examples.sublime-project
@@ -0,0 +1,1300 @@
+{
+	"folders":
+	[
+		{
+			"path": ".",
+		}
+	],
+	"settings":
+	{
+		"cmake":
+		{
+			"build_folder": "$folder/build",
+		},
+	},
+	"build_systems":
+	[
+		{
+			"file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$",
+			"name": "ct-examples (Linux)",
+			"shell_cmd": "make -j8",
+			"syntax": "Packages/CMakeBuilder/Syntax/Make.sublime-syntax",
+			"variants":
+			[
+				{
+					"name": "clean",
+					"shell_cmd": "make -j8 clean"
+				},
+				{
+					"name": "install/strip",
+					"shell_cmd": "make -j8 install/strip"
+				},
+				{
+					"name": "install",
+					"shell_cmd": "make -j8 install"
+				},
+				{
+					"name": "list_install_components",
+					"shell_cmd": "make -j8 list_install_components"
+				},
+				{
+					"name": "rebuild_cache",
+					"shell_cmd": "make -j8 rebuild_cache"
+				},
+				{
+					"name": "bgs_demo2",
+					"shell_cmd": "make -j8 bgs_demo2"
+				},
+				{
+					"name": "install/local",
+					"shell_cmd": "make -j8 install/local"
+				},
+				{
+					"name": "bgslibrary",
+					"shell_cmd": "make -j8 bgslibrary"
+				},
+				{
+					"name": "libbgs",
+					"shell_cmd": "make -j8 libbgs"
+				},
+				{
+					"name": "Demo2.o",
+					"shell_cmd": "make -j8 Demo2.o"
+				},
+				{
+					"name": "Demo2.i",
+					"shell_cmd": "make -j8 Demo2.i"
+				},
+				{
+					"name": "Demo2.s",
+					"shell_cmd": "make -j8 Demo2.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/FrameProcessor.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/FrameProcessor.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/FrameProcessor.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/FrameProcessor.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/Main.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/Main.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/Main.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/Main.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/PreProcessor.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/PreProcessor.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/PreProcessor.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/PreProcessor.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoAnalysis.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoAnalysis.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoCapture.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoCapture.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/VideoCapture.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/VideoCapture.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveBackgroundLearning.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/AdaptiveSelectiveBackgroundLearning.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/CodeBook.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/CodeBook.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPAdaptiveMedian.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPEigenbackground.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPGrimsonGMM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPMean.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPMean.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPPratiMediod.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPTexture.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPTexture.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPWrenGA.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/DPZivkovicAGMM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FrameDifference.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzyChoquetIntegral.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/FuzzySugenoIntegral.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/GMG.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/GMG.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/IMBS/IMBS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/KernelTable.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGSubtractor.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KDE/NPBGmodel.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/KNN.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/KNN.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBAdaptiveSOM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyAdaptiveSOM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBFuzzyGaussian.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBMixtureOfGaussians.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEDefs.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEHistogram.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MEImage.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/MotionDetection.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/graph.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBP_MRF/maxflow.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLBSP_.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorLOBSTER.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorPAWCS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/BackgroundSubtractorSuBSENSE.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSP/LBSP_.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LBSimpleGaussian.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/LOBSTER.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV1.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MixtureOfGaussianV2.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiCue.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiCue.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobExtraction.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/BlobResult.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/CMultiLayerBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/LocalBinaryPattern.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/MultiLayer/blob.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PAWCS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PAWCS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PBAS/PBAS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/PixelBasedAdaptiveSegmenter.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SigmaDelta/sdLaMa091.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/StaticFrameDifference.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/SuBSENSE.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/MRF.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FGMM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2F/T2FMRF.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FGMM_UV.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/T2FMRF_UV.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/Tapter.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/Tapter.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/TwoPoints/two_points.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ViBe/vibe-background-sequential.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackground.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/VuMeter/TBackgroundVuMeter.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingMean.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/WeightedMovingVariance.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/_template_/MyBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/algorithms.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/algorithms.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/AdaptiveMedianBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Eigenbackground.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Error.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Error.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/GrimsonGMM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/Image.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/Image.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/MeanBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/PratiMediodBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/TextureBGS.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/WrenGA.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/dp/ZivkovicAGMM.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModel.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzyGauss.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelFuzzySom.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelGauss.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelMog.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/lb/BGModelSom.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/algorithms/ttoolbox.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/ForegroundMaskAnalysis.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/FuzzyUtils.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PerformanceUtils.s"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PixelUtils.o",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PixelUtils.o"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PixelUtils.i",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PixelUtils.i"
+				},
+				{
+					"name": "home/sugu/code/idiv/camtron/src/tools/PixelUtils.s",
+					"shell_cmd": "make -j8 home/sugu/code/idiv/camtron/src/tools/PixelUtils.s"
+				}
+			],
+			"working_dir": "$folder/build"
+		}
+	],
+}
-- 
GitLab