summarylogtreecommitdiffstats
path: root/linux-install-rules.patch
blob: 5954d62d675faec28aa256f040b0424ba7dc09af (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e023b99..02af3e5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -187,3 +187,61 @@ endif()
 if(IOS_PLATFORM AND IOS_DEMO)
     add_subdirectory(ios)
 endif()
+
+if(GNULINUX_PLATFORM)
+    # package config
+    set(prefix ${CMAKE_INSTALL_PREFIX})
+    set(exec_prefix "\${prefix}")
+    set(libdir "\${exec_prefix}/lib${LIB_SUFFIX}")
+    set(includedir "\${prefix}/include")
+
+    configure_file(
+        ${CMAKE_CURRENT_SOURCE_DIR}/ne10.pc.in
+        ${CMAKE_CURRENT_BINARY_DIR}/ne10.pc
+    @ONLY)
+
+    install(
+        FILES ${CMAKE_CURRENT_BINARY_DIR}/ne10.pc
+    DESTINATION lib${LIB_SUFFIX}/pkgconfig)
+
+    # install rules
+    install(DIRECTORY inc/
+        DESTINATION include/ne10
+        FILES_MATCHING PATTERN "*.h")
+    install(DIRECTORY common/
+        DESTINATION include/ne10
+        FILES_MATCHING PATTERN "*.h")
+
+    if(NE10_ENABLE_DSP)
+        install(DIRECTORY modules/dsp/
+            DESTINATION include/ne10/dsp
+            FILES_MATCHING PATTERN "*.h")
+    endif()
+
+    if(NE10_ENABLE_MATH)
+        install(DIRECTORY modules/math/
+            DESTINATION include/ne10/math
+            FILES_MATCHING PATTERN "*.h")
+    endif()
+
+    if(NE10_ENABLE_IMGPROC)
+        install(DIRECTORY modules/imgproc/
+            DESTINATION include/ne10/imgproc
+            FILES_MATCHING PATTERN "*.h")
+    endif()
+
+    if(NE10_ENABLE_PHYSICS)
+        install(DIRECTORY modules/physics/
+            DESTINATION include/ne10/physics
+            FILES_MATCHING PATTERN "*.h")
+    endif()
+    # uninstall rules
+    configure_file(
+        ${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in
+        ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
+    @ONLY)
+
+    add_custom_target(uninstall
+        ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
+    )
+endif()
diff --git a/cmake/cmake_uninstall.cmake.in b/cmake/cmake_uninstall.cmake.in
new file mode 100644
index 0000000..84cba82
--- /dev/null
+++ b/cmake/cmake_uninstall.cmake.in
@@ -0,0 +1,32 @@
+# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
+
+IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
+    MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
+ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
+
+FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
+STRING(REGEX REPLACE "\n" ";" files "${files}")
+FOREACH(file ${files})
+    MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
+    IF(EXISTS "$ENV{DESTDIR}${file}")
+        EXEC_PROGRAM(
+            "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
+            OUTPUT_VARIABLE rm_out
+            RETURN_VALUE rm_retval
+        )
+        IF(NOT "${rm_retval}" STREQUAL 0)
+          MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
+          ENDIF(NOT "${rm_retval}" STREQUAL 0)
+    ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}")
+        EXEC_PROGRAM(
+            "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
+            OUTPUT_VARIABLE rm_out
+            RETURN_VALUE rm_retval
+        )
+        IF(NOT "${rm_retval}" STREQUAL 0)
+            MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
+        ENDIF(NOT "${rm_retval}" STREQUAL 0)
+    ELSE(EXISTS "$ENV{DESTDIR}${file}")
+        MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
+    ENDIF(EXISTS "$ENV{DESTDIR}${file}")
+ENDFOREACH(file)
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt
index 4aa19e4..f4f878e 100644
--- a/modules/CMakeLists.txt
+++ b/modules/CMakeLists.txt
@@ -387,6 +387,8 @@ if(NE10_BUILD_STATIC OR ANDROID_PLATFORM OR IOS_DEMO)
     install(TARGETS NE10
       DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/../ios/NE10Demo/libs/)
   endif(IOS_DEMO)
+
+    install(TARGETS NE10 DESTINATION lib)
 endif()
 
 if(NE10_BUILD_SHARED)
@@ -422,4 +424,5 @@ if(NE10_BUILD_SHARED)
 
     target_link_libraries(NE10_test m)
 
+    install(TARGETS NE10_shared DESTINATION lib)
 endif()
diff --git a/ne10.pc.in b/ne10.pc.in
new file mode 100644
index 0000000..2dc9e51
--- /dev/null
+++ b/ne10.pc.in
@@ -0,0 +1,13 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@/ne10
+LV_CXXFLAGS=@LV_CXXFLAGS@
+
+
+Name: ne10
+Description: Ne10: An open optimized software library project for the ARMĀ® Architecture
+Requires:
+Version: @LIBVER@
+Libs: -L${libdir} -lNE10
+Cflags: -I${includedir} ${LV_CXXFLAGS}