You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libsvm-1-cmakelists.patch

18 lines
475 B

diff -burN libsvm-3.20.orig/CMakeLists.txt libsvm-3.20/CMakeLists.txt
--- libsvm-3.20.orig/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100
+++ libsvm-3.20/CMakeLists.txt 2015-06-21 18:53:14.006414310 +0200
@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 2.8)
+
+add_library(libsvm svm.cpp)
+
+install(TARGETS libsvm
+ RUNTIME DESTINATION bin
+ LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION lib)
+
+install(FILES ${CMAKE_SOURCE_DIR}/svm.h
+ DESTINATION include
+ )
+