Skip to content

Instantly share code, notes, and snippets.

@dsowsy
Last active November 2, 2016 13:09
Show Gist options
  • Select an option

  • Save dsowsy/1932a5fa73785924e51718642ea242b9 to your computer and use it in GitHub Desktop.

Select an option

Save dsowsy/1932a5fa73785924e51718642ea242b9 to your computer and use it in GitHub Desktop.
Terminal compilation of OpenCV apps on Mac
# 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