Last active
November 2, 2016 13:09
-
-
Save dsowsy/1932a5fa73785924e51718642ea242b9 to your computer and use it in GitHub Desktop.
Terminal compilation of OpenCV apps on Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage: makeOpenCV <filename.cpp> | |
| makeOpenCV(){ | |
| g++ -ggdb `pkg-config --cflags --libs opencv` -stdlib=libc++ $1 -o /tmp/test $ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment