cmake_install.cmake 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. # Install script for directory: /home/zx/env/opencv-4.8.0/modules/gapi
  2. # Set the install prefix
  3. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  4. set(CMAKE_INSTALL_PREFIX "/usr/local")
  5. endif()
  6. string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
  7. # Set the install configuration name.
  8. if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
  9. if(BUILD_TYPE)
  10. string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
  11. CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
  12. else()
  13. set(CMAKE_INSTALL_CONFIG_NAME "Release")
  14. endif()
  15. message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
  16. endif()
  17. # Set the component getting installed.
  18. if(NOT CMAKE_INSTALL_COMPONENT)
  19. if(COMPONENT)
  20. message(STATUS "Install component: \"${COMPONENT}\"")
  21. set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
  22. else()
  23. set(CMAKE_INSTALL_COMPONENT)
  24. endif()
  25. endif()
  26. # Install shared libraries without execute permission?
  27. if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
  28. set(CMAKE_INSTALL_SO_NO_EXE "1")
  29. endif()
  30. # Is this installation the result of a crosscompile?
  31. if(NOT DEFINED CMAKE_CROSSCOMPILING)
  32. set(CMAKE_CROSSCOMPILING "FALSE")
  33. endif()
  34. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xlibsx" OR NOT CMAKE_INSTALL_COMPONENT)
  35. foreach(file
  36. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so.4.8.0"
  37. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so.408"
  38. )
  39. if(EXISTS "${file}" AND
  40. NOT IS_SYMLINK "${file}")
  41. file(RPATH_CHECK
  42. FILE "${file}"
  43. RPATH "/usr/local/lib")
  44. endif()
  45. endforeach()
  46. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY OPTIONAL FILES
  47. "/home/zx/env/opencv-4.8.0/build/lib/libopencv_gapi.so.4.8.0"
  48. "/home/zx/env/opencv-4.8.0/build/lib/libopencv_gapi.so.408"
  49. )
  50. foreach(file
  51. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so.4.8.0"
  52. "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so.408"
  53. )
  54. if(EXISTS "${file}" AND
  55. NOT IS_SYMLINK "${file}")
  56. file(RPATH_CHANGE
  57. FILE "${file}"
  58. OLD_RPATH "/home/zx/env/opencv-4.8.0/build/lib:"
  59. NEW_RPATH "/usr/local/lib")
  60. if(CMAKE_INSTALL_DO_STRIP)
  61. execute_process(COMMAND "/usr/bin/strip" "${file}")
  62. endif()
  63. endif()
  64. endforeach()
  65. endif()
  66. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  67. if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so" AND
  68. NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so")
  69. file(RPATH_CHECK
  70. FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so"
  71. RPATH "/usr/local/lib")
  72. endif()
  73. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/zx/env/opencv-4.8.0/build/lib/libopencv_gapi.so")
  74. if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so" AND
  75. NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so")
  76. file(RPATH_CHANGE
  77. FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so"
  78. OLD_RPATH "/home/zx/env/opencv-4.8.0/build/lib:"
  79. NEW_RPATH "/usr/local/lib")
  80. if(CMAKE_INSTALL_DO_STRIP)
  81. execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libopencv_gapi.so")
  82. endif()
  83. endif()
  84. endif()
  85. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  86. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi.hpp")
  87. endif()
  88. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  89. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/core.hpp")
  90. endif()
  91. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  92. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/cpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/cpu/core.hpp")
  93. endif()
  94. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  95. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/cpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/cpu/gcpukernel.hpp")
  96. endif()
  97. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  98. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/cpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/cpu/imgproc.hpp")
  99. endif()
  100. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  101. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/cpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/cpu/stereo.hpp")
  102. endif()
  103. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  104. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/cpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/cpu/video.hpp")
  105. endif()
  106. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  107. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/fluid" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/fluid/core.hpp")
  108. endif()
  109. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  110. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/fluid" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/fluid/gfluidbuffer.hpp")
  111. endif()
  112. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  113. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/fluid" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/fluid/gfluidkernel.hpp")
  114. endif()
  115. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  116. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/fluid" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/fluid/imgproc.hpp")
  117. endif()
  118. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  119. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/garg.hpp")
  120. endif()
  121. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  122. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/garray.hpp")
  123. endif()
  124. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  125. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gasync_context.hpp")
  126. endif()
  127. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  128. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcall.hpp")
  129. endif()
  130. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  131. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcommon.hpp")
  132. endif()
  133. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  134. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcompiled.hpp")
  135. endif()
  136. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  137. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcompiled_async.hpp")
  138. endif()
  139. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  140. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcompoundkernel.hpp")
  141. endif()
  142. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  143. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcomputation.hpp")
  144. endif()
  145. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  146. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gcomputation_async.hpp")
  147. endif()
  148. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  149. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gframe.hpp")
  150. endif()
  151. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  152. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gkernel.hpp")
  153. endif()
  154. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  155. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gmat.hpp")
  156. endif()
  157. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  158. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gmetaarg.hpp")
  159. endif()
  160. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  161. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gopaque.hpp")
  162. endif()
  163. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  164. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gproto.hpp")
  165. endif()
  166. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  167. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/gpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gpu/core.hpp")
  168. endif()
  169. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  170. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/gpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gpu/ggpukernel.hpp")
  171. endif()
  172. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  173. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/gpu" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gpu/imgproc.hpp")
  174. endif()
  175. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  176. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gscalar.hpp")
  177. endif()
  178. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  179. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gstreaming.hpp")
  180. endif()
  181. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  182. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gtransform.hpp")
  183. endif()
  184. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  185. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gtype_traits.hpp")
  186. endif()
  187. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  188. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/gtyped.hpp")
  189. endif()
  190. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  191. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/imgproc.hpp")
  192. endif()
  193. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  194. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer.hpp")
  195. endif()
  196. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  197. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/bindings_ie.hpp")
  198. endif()
  199. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  200. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/bindings_onnx.hpp")
  201. endif()
  202. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  203. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/bindings_ov.hpp")
  204. endif()
  205. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  206. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/ie.hpp")
  207. endif()
  208. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  209. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/onnx.hpp")
  210. endif()
  211. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  212. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/ov.hpp")
  213. endif()
  214. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  215. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/infer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/infer/parsers.hpp")
  216. endif()
  217. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  218. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/media.hpp")
  219. endif()
  220. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  221. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/oak" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/oak/infer.hpp")
  222. endif()
  223. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  224. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/oak" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/oak/oak.hpp")
  225. endif()
  226. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  227. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/ocl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/ocl/core.hpp")
  228. endif()
  229. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  230. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/ocl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/ocl/goclkernel.hpp")
  231. endif()
  232. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  233. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/ocl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/ocl/imgproc.hpp")
  234. endif()
  235. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  236. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/opencv_includes.hpp")
  237. endif()
  238. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  239. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/operators.hpp")
  240. endif()
  241. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  242. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/assert.hpp")
  243. endif()
  244. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  245. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/convert.hpp")
  246. endif()
  247. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  248. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/cvdefs.hpp")
  249. endif()
  250. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  251. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/exports.hpp")
  252. endif()
  253. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  254. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/mat.hpp")
  255. endif()
  256. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  257. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/saturate.hpp")
  258. endif()
  259. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  260. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/scalar.hpp")
  261. endif()
  262. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  263. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/own" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/own/types.hpp")
  264. endif()
  265. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  266. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/plaidml" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/plaidml/core.hpp")
  267. endif()
  268. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  269. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/plaidml" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/plaidml/gplaidmlkernel.hpp")
  270. endif()
  271. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  272. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/plaidml" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/plaidml/plaidml.hpp")
  273. endif()
  274. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  275. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/python" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/python/python.hpp")
  276. endif()
  277. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  278. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/render.hpp")
  279. endif()
  280. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  281. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/render" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/render/render.hpp")
  282. endif()
  283. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  284. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/render" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/render/render_types.hpp")
  285. endif()
  286. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  287. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/rmat.hpp")
  288. endif()
  289. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  290. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/s11n.hpp")
  291. endif()
  292. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  293. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/s11n" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/s11n/base.hpp")
  294. endif()
  295. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  296. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/stereo.hpp")
  297. endif()
  298. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  299. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/cap.hpp")
  300. endif()
  301. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  302. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/desync.hpp")
  303. endif()
  304. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  305. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/format.hpp")
  306. endif()
  307. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  308. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/gstreamer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/gstreamer/gstreamerpipeline.hpp")
  309. endif()
  310. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  311. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/gstreamer" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/gstreamer/gstreamersource.hpp")
  312. endif()
  313. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  314. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/meta.hpp")
  315. endif()
  316. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  317. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/accel_types.hpp")
  318. endif()
  319. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  320. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/cfg_params.hpp")
  321. endif()
  322. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  323. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/data_provider_interface.hpp")
  324. endif()
  325. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  326. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/default.hpp")
  327. endif()
  328. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  329. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/device_selector_interface.hpp")
  330. endif()
  331. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  332. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming/onevpl" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/onevpl/source.hpp")
  333. endif()
  334. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  335. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/source.hpp")
  336. endif()
  337. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  338. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/streaming" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/streaming/sync.hpp")
  339. endif()
  340. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  341. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/any.hpp")
  342. endif()
  343. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  344. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/compiler_hints.hpp")
  345. endif()
  346. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  347. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/copy_through_move.hpp")
  348. endif()
  349. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  350. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/optional.hpp")
  351. endif()
  352. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  353. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/throw.hpp")
  354. endif()
  355. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  356. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/type_traits.hpp")
  357. endif()
  358. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  359. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/util.hpp")
  360. endif()
  361. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  362. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi/util" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/util/variant.hpp")
  363. endif()
  364. if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevx" OR NOT CMAKE_INSTALL_COMPONENT)
  365. file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/opencv4/opencv2/gapi" TYPE FILE OPTIONAL FILES "/home/zx/env/opencv-4.8.0/modules/gapi/include/opencv2/gapi/video.hpp")
  366. endif()