[mlpack-svn] r13052 - mlpack/trunk/src/mlpack/methods/pca

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Jun 13 12:21:26 EDT 2012


Author: rmohan
Date: 2012-06-13 12:21:25 -0400 (Wed, 13 Jun 2012)
New Revision: 13052

Modified:
   mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt
Log:
Revert to PCA CMake configuration


Modified: mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt
===================================================================
--- mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt	2012-06-13 16:21:08 UTC (rev 13051)
+++ mlpack/trunk/src/mlpack/methods/pca/CMakeLists.txt	2012-06-13 16:21:25 UTC (rev 13052)
@@ -3,10 +3,8 @@
 # Define the files we need to compile
 # Anything not in this list will not be compiled into MLPACK.
 set(SOURCES
-  mdistupdate.hpp
-  mdivupdate.hpp
-  nmf.hpp
-  nmf_impl.hpp
+  pca.hpp
+  pca.cpp
 )
 
 # Add directory name to sources.
@@ -18,10 +16,10 @@
 # the parent scope).
 set(MLPACK_SRCS ${MLPACK_SRCS} ${DIR_SRCS} PARENT_SCOPE)
 
-add_executable(nmf
-  nmf_main.cpp
+add_executable(pca
+  pca_main.cpp
 )
-target_link_libraries(nmf
+target_link_libraries(pca
   mlpack
 )
-install(TARGETS nmf RUNTIME DESTINATION bin)
+install(TARGETS pca RUNTIME DESTINATION bin)




More information about the mlpack-svn mailing list