[mlpack-svn] r13715 - in mlpack/trunk/src/mlpack: core/arma_extend core/data core/dists core/kernels core/math core/metrics core/optimizers core/optimizers/aug_lagrangian core/optimizers/lbfgs core/tree core/util methods methods/det methods/emst methods/gmm methods/hmm methods/kernel_pca methods/kmeans methods/lars methods/linear_regression methods/local_coordinate_coding methods/maxip methods/mvu methods/naive_bayes methods/nca methods/neighbor_search methods/nmf methods/pca methods/radical methods/range_search methods/sparse_coding tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Oct 15 23:13:37 EDT 2012


Author: rcurtin
Date: 2012-10-15 23:13:37 -0400 (Mon, 15 Oct 2012)
New Revision: 13715

Modified:
   mlpack/trunk/src/mlpack/core/arma_extend/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/data/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/dists/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/kernels/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/math/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/metrics/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/optimizers/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/optimizers/lbfgs/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/tree/CMakeLists.txt
   mlpack/trunk/src/mlpack/core/util/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/det/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/emst/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/gmm/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/hmm/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/kernel_pca/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/kmeans/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/lars/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/linear_regression/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/local_coordinate_coding/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/maxip/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/mvu/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/naive_bayes/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/nca/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/neighbor_search/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/nmf/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/radical/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/range_search/CMakeLists.txt
   mlpack/trunk/src/mlpack/methods/sparse_coding/CMakeLists.txt
   mlpack/trunk/src/mlpack/tests/CMakeLists.txt
Log:
Remove all the cmake_minimum_required() bits that weren't actually necessary
because there is a cmake_minimum_required() in the root CMakeLists.txt.


Modified: mlpack/trunk/src/mlpack/core/arma_extend/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/arma_extend/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/arma_extend/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/data/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/data/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/data/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files that we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/dists/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/dists/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/dists/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/kernels/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/kernels/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/kernels/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/math/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/math/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/math/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/metrics/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/metrics/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/metrics/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/optimizers/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/optimizers/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/optimizers/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 set(DIRS
   aug_lagrangian
   lbfgs

Modified: mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 set(SOURCES
   aug_lagrangian.hpp
   aug_lagrangian_impl.hpp

Modified: mlpack/trunk/src/mlpack/core/optimizers/lbfgs/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/optimizers/lbfgs/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/optimizers/lbfgs/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 set(SOURCES
   lbfgs_impl.hpp
   lbfgs.hpp

Modified: mlpack/trunk/src/mlpack/core/tree/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/tree/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/tree/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/core/util/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/core/util/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/core/util/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 ## recurse
 set(DIRS
   det

Modified: mlpack/trunk/src/mlpack/methods/det/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/det/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/det/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 # Do not include test programs here

Modified: mlpack/trunk/src/mlpack/methods/emst/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/emst/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/emst/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/gmm/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/gmm/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/gmm/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/hmm/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/hmm/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/hmm/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/kernel_pca/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/kernel_pca/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/kernel_pca/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/kmeans/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/kmeans/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/kmeans/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/lars/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/lars/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/lars/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/linear_regression/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/linear_regression/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/linear_regression/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 # Do not include test programs here

Modified: mlpack/trunk/src/mlpack/methods/local_coordinate_coding/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/local_coordinate_coding/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/local_coordinate_coding/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 # Do not include test programs here

Modified: mlpack/trunk/src/mlpack/methods/maxip/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/maxip/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/maxip/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/mvu/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/mvu/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/mvu/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/naive_bayes/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/naive_bayes/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/naive_bayes/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/nca/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/nca/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/nca/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/neighbor_search/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/neighbor_search/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/neighbor_search/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/nmf/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/nmf/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/nmf/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/radical/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/radical/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/radical/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/range_search/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/range_search/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/range_search/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile.
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/methods/sparse_coding/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/sparse_coding/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/methods/sparse_coding/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # Define the files we need to compile
 # Anything not in this list will not be compiled into the output library
 set(SOURCES

Modified: mlpack/trunk/src/mlpack/tests/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/tests/CMakeLists.txt	2012-10-16 02:59:15 UTC (rev 13714)
+++ mlpack/trunk/src/mlpack/tests/CMakeLists.txt	2012-10-16 03:13:37 UTC (rev 13715)
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 2.8)
-
 # MLPACK test executable.
 add_executable(mlpack_test
   mlpack_test.cpp




More information about the mlpack-svn mailing list