a24424c
diff --git a/SEBenchmarks/CMakeLists.txt b/SEBenchmarks/CMakeLists.txt
a24424c
deleted file mode 100644
faaf044
index 8c45f204..00000000
a24424c
--- a/SEBenchmarks/CMakeLists.txt
a24424c
+++ /dev/null
faaf044
@@ -1,86 +0,0 @@
a24424c
-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.5)
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Load elements_subdir macro here
a24424c
-# Examples:
a24424c
-#   For declaring a project module:
a24424c
-#         elements_subdir(ElementsExamples)
a24424c
-#===============================================================================
a24424c
-elements_subdir(SEBenchmarks)
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Load elements_depends_on_subdirs macro here
a24424c
-#   For creating a dependency onto an other accessible module
a24424c
-#         elements_depends_on_subdirs(ElementsKernel)
a24424c
-#===============================================================================
faaf044
-elements_depends_on_subdirs(AlexandriaKernel)
a24424c
-elements_depends_on_subdirs(ModelFitting)
a24424c
-elements_depends_on_subdirs(SEFramework)
a24424c
-elements_depends_on_subdirs(SEImplementation)
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Add the find_package macro (a pure CMake command) here to locate the
a24424c
-# libraries.
a24424c
-# Examples:
a24424c
-#          find_package(CppUnit)
a24424c
-#===============================================================================
a24424c
-find_package(Boost REQUIRED timer)
a24424c
-find_package(OpenCV QUIET)
a24424c
-
a24424c
-if (OPENCV_FOUND)
a24424c
-    add_definitions(-DWITH_OPENCV)
a24424c
-endif ()
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Declare the library dependencies here
a24424c
-# Example:
a24424c
-#         elements_add_library(ElementsExamples src/Lib/*.cpp
a24424c
-#                     LINK_LIBRARIES Boost ElementsKernel
a24424c
-#                     INCLUDE_DIRS Boost ElementsKernel
a24424c
-#                     PUBLIC_HEADERS ElementsExamples)
a24424c
-#===============================================================================
a24424c
-
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Declare the executables here
a24424c
-# Example:
a24424c
-# elements_add_executable(ElementsProgramExample src/Program/ProgramExample.cpp
a24424c
-#                        LINK_LIBRARIES Boost ElementsExamples
a24424c
-#                        INCLUDE_DIRS Boost ElementsExamples)
a24424c
-#===============================================================================
a24424c
-elements_add_executable(BenchConvolution src/program/BenchConvolution.cpp
a24424c
-        LINK_LIBRARIES ModelFitting SEFramework ${Boost_LIBRARIES} ${OpenCV_LIBS})
a24424c
-elements_add_executable(BenchBackgroundConvolution src/program/BenchBackgroundConvolution.cpp
a24424c
-        LINK_LIBRARIES SEFramework SEImplementation ${Boost_LIBRARIES})
7d4000b
-elements_add_executable(BenchRendering src/program/BenchRendering.cpp
7d4000b
-        LINK_LIBRARIES SEFramework SEImplementation ${Boost_LIBRARIES})
faaf044
-elements_add_executable(BenchBackgroundModel src/program/BenchBackgroundModel.cpp
faaf044
-        LINK_LIBRARIES SEFramework SEImplementation ${Boost_LIBRARIES})
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Declare the Boost tests here
a24424c
-# Example:
a24424c
-# elements_add_unit_test(BoostClassExample tests/src/Boost/ClassExample_test.cpp
a24424c
-#                       EXECUTABLE BoostClassExample_test
a24424c
-#                       INCLUDE_DIRS ElementsExamples
a24424c
-#                       LINK_LIBRARIES ElementsExamples TYPE Boost)
a24424c
-#===============================================================================
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Declare the Python programs here
a24424c
-# Examples :
a24424c
-# elements_add_python_program(PythonProgramExample
a24424c
-#                             ElementsExamples.PythonProgramExample)
a24424c
-#===============================================================================
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Use the following macro for python modules, scripts and aux files:
a24424c
-#  elements_install_python_modules()
a24424c
-#  elements_install_scripts()
a24424c
-#===============================================================================
a24424c
-
a24424c
-#===============================================================================
a24424c
-# Add the elements_install_conf_files macro
a24424c
-# Examples:
a24424c
-#          elements_install_conf_files()
a24424c
-#===============================================================================