File: install-obexfs.patch

package info (click to toggle)
obexftp 0.24-11
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 728 kB
  • sloc: ansic: 7,132; ruby: 229; sh: 89; perl: 43; makefile: 39; python: 16
file content (26 lines) | stat: -rw-r--r-- 464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- a/fuse/CMakeLists.txt
+++ b/fuse/CMakeLists.txt
@@ -14,6 +14,11 @@
     ${Fuse_LIBRARIES}
   )
 
+  install ( TARGETS obexfs
+    RUNTIME
+      DESTINATION ${CMAKE_INSTALL_BINDIR}
+      COMPONENT fuse
+  )
 
   add_executable ( obexautofs
     obexautofs.c
@@ -23,4 +28,11 @@
     obexftp
     ${Fuse_LIBRARIES}
   )
+
+  install ( TARGETS obexautofs
+    RUNTIME
+      DESTINATION ${CMAKE_INSTALL_BINDIR}
+      COMPONENT fuse
+  )
+
 endif ( Fuse_FOUND )