dusty-nv / jetson-inference

Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.
https://developer.nvidia.com/embedded/twodaystoademo
MIT License
7.76k stars 2.97k forks source link

jetson-utils target missing #417

Closed PaulVerhoeckx closed 1 year ago

PaulVerhoeckx commented 5 years ago

Hi,

After building jetsen-inference (as described here) I try to depend on it from a custom package. However the find_package cmake call cannot fully find it and throws the following warning:

CMake Warning at custom_package/CMakeLists.txt:25 (find_package):
  Found package configuration file:

    /usr/local/share/jetson-inference/cmake/jetson-inferenceConfig.cmake

  but it set jetson-inference_FOUND to FALSE so package "jetson-inference" is
  considered to be NOT FOUND.  Reason given by package:

  The following imported targets are referenced, but are missing:
  jetson-utils

There seems to be an installation error which prevents jetson-utils to be found.

Has anyone experienced anything similar before? Any help would be appreciated.

System info: Jetson tx2 Ubuntu 16.04 ros kinetic

dusty-nv commented 5 years ago

Did you try find_package(jetson-utils) first?

There is an example CMakeLists in the 'Creating your own Image Recognition Program (C++)' step.


From: Paul Verhoeckx notifications@github.com Sent: Friday, September 27, 2019 7:42:44 AM To: dusty-nv/jetson-inference jetson-inference@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [dusty-nv/jetson-inference] jetson-utils target missing (#417)

Hi,

After building jetsen-inference (as described herehttps://github.com/dusty-nv/jetson-inference/blob/master/docs/building-repo.md) I try to depend on it from a custom package. However the find_package cmake call cannot fully find it and throws the following warning:

CMake Warning at custom_package/CMakeLists.txt:25 (find_package): Found package configuration file:

/usr/local/share/jetson-inference/cmake/jetson-inferenceConfig.cmake

but it set jetson-inference_FOUND to FALSE so package "jetson-inference" is considered to be NOT FOUND. Reason given by package:

The following imported targets are referenced, but are missing: jetson-utils

There seems to be an installation error which prevents jetson-utils to be found.

Has anyone experienced anything similar before? Any help would be appreciated.

System info: Jetson tx2 Ubuntu 16.04 ros kinetic

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/dusty-nv/jetson-inference/issues/417?email_source=notifications&email_token=ADVEGK5EXYASDLICFICV2N3QLXWTJA5CNFSM4I3FLDD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HOEGPBA, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ADVEGK6NNQF5M2LTVYRBVG3QLXWTJANCNFSM4I3FLDDQ.


This email message is for the sole use of the intended recipient(s) and may contain confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message.

rokusottervanger commented 5 years ago

That fixed it, thanks!