[mlpack-git] master: Removed phi, added gmm_convert_main.cpp (828f555)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Mar 5 21:55:52 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/904762495c039e345beba14c1142fd719b3bd50e...f94823c800ad6f7266995c700b1b630d5ffdcf40

>---------------------------------------------------------------

commit 828f5555125c6f05a34ee1692d57b3df0a02ac55
Author: michaelfox99 <michaelfox99 at gmail.com>
Date:   Tue Aug 5 12:49:25 2014 +0000

    Removed phi, added gmm_convert_main.cpp


>---------------------------------------------------------------

828f5555125c6f05a34ee1692d57b3df0a02ac55
 src/mlpack/methods/gmm/CMakeLists.txt | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/mlpack/methods/gmm/CMakeLists.txt b/src/mlpack/methods/gmm/CMakeLists.txt
index a9305cc..cc58f0f 100644
--- a/src/mlpack/methods/gmm/CMakeLists.txt
+++ b/src/mlpack/methods/gmm/CMakeLists.txt
@@ -3,7 +3,6 @@
 set(SOURCES
   gmm.hpp
   gmm_impl.hpp
-  phi.hpp
   em_fit.hpp
   em_fit_impl.hpp
   no_constraint.hpp
@@ -25,8 +24,16 @@ set(MLPACK_SRCS ${MLPACK_SRCS} ${DIR_SRCS} PARENT_SCOPE)
 add_executable(gmm
   gmm_main.cpp
 )
+
 # link dependencies of mog_em
 target_link_libraries(gmm 
   mlpack
 )
-install(TARGETS gmm RUNTIME DESTINATION bin)
+
+add_executable(gmm_convert
+  gmm_convert_main.cpp
+)
+target_link_libraries(gmm_convert 
+  mlpack
+)
+install(TARGETS gmm gmm_convert RUNTIME DESTINATION bin)



More information about the mlpack-git mailing list