Skip to content
Snippets Groups Projects
Commit f16789c6 authored by Ken Tossell's avatar Ken Tossell
Browse files

patch from Kevin Walchko to register libuvc.dylib on the Mac

parent 064ea2f0
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,11 @@ all: ...@@ -12,6 +12,11 @@ all:
mkdir -p build/build mkdir -p build/build
cd build/build && $(CMAKE) ../git $(CMAKE_ARGS) cd build/build && $(CMAKE) ../git $(CMAKE_ARGS)
cd build/build && make && make install cd build/build && make && make install
# you shouldn't have to do this, but it works for the Mac
if [ `uname` = Darwin ]; then \
install_name_tool -id `rospack find libuvc`/libuvc/lib/libuvc.dylib `rospack find libuvc`/libuvc/lib/libuvc.dylib; \
fi
clean: clean:
rm -rf build libuvc rm -rf build libuvc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment