Hi guys, is there any update on this issue? Kind of newbie here. Managed to install opencv, sfml, cmake, libusb and relinked SFML as Jeff suggested but still can’t run the pre-build binaries. My error is the usual stuff: image not found. Any tip would be more than welcome. Tnx a lot
Moved your post to its own thread.
Can you post an image or text of your command link when you try to run a sample?
Hey Josh,
its:
Beyonds-iMac:bin beyondinteractive$ ./SimpleHandViewer-SFML
dyld: Library not loaded: /usr/local/lib/libsfml-graphics.2.2.0.dylib
Referenced from: /Users/beyondinteractive/Desktop/AstraSDK-0.4.0-20151014T193346Z-osx-x64/bin/./SimpleHandViewer-SFML
Reason: image not found
Trace/BPT trap: 5
(I must have done smt stupid right?)
Tnx
Well I managed to build & run the samples successfully. The pre-compiled ones were not running since they were looking for the 2.2 sfml.
Ok, so this sample is looking for SFML 2.2 but brew install sfml
now installs SFML 2.3.2. The solution is to build the samples from source, which is located in the samples/ folder. Follow the instructions in the readme, and also review the previous thread as there were a few missing from the v0.4 readme, particularly:
brew install libusb
and when you run cmake you may need to do this:
export SFML_ROOT=$HOME/.homebrew/Cellar/sfml/2.3
All good, thank you very much Josh!
Ah you beat me to the response! Glad you’re up and running!
Amazed with your quick reply. Tnx again.
Thats great guys. Tnx a lot.