File: install-obexfs

package info (click to toggle)
obexftp 0.24-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704 kB
  • sloc: ansic: 7,132; ruby: 229; sh: 89; perl: 43; makefile: 39; python: 16
file content (28 lines) | stat: -rw-r--r-- 620 bytes parent folder | download | duplicates (2)
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
27
28
Index: obexftp/fuse/CMakeLists.txt
===================================================================
--- obexftp.orig/fuse/CMakeLists.txt
+++ obexftp/fuse/CMakeLists.txt
@@ -14,6 +14,11 @@ if ( Fuse_FOUND )
     ${Fuse_LIBRARIES}
   )
 
+  install ( TARGETS obexfs
+    RUNTIME
+      DESTINATION ${CMAKE_INSTALL_BINDIR}
+      COMPONENT fuse
+  )
 
   add_executable ( obexautofs
     obexautofs.c
@@ -23,4 +28,11 @@ if ( Fuse_FOUND )
     obexftp
     ${Fuse_LIBRARIES}
   )
+
+  install ( TARGETS obexautofs
+    RUNTIME
+      DESTINATION ${CMAKE_INSTALL_BINDIR}
+      COMPONENT fuse
+  )
+
 endif ( Fuse_FOUND )