Skip to content

Instantly share code, notes, and snippets.

@vtourraine
Created December 8, 2011 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vtourraine/1447551 to your computer and use it in GitHub Desktop.
Save vtourraine/1447551 to your computer and use it in GitHub Desktop.
Copy OCHamcrest headers into a single folder in order to use it as a framework with the static library
mkdir -p OCHamcrest
cp -f ../OCHamcrest/Source/OCHamcrest.h OCHamcrest/;
find ../OCHamcrest/Source/Core/ -type f -name '*.h' -exec cp -f {} OCHamcrest/ \;
find ../OCHamcrest/Source/Library/ -type f -name '*.h' -exec cp -f {} OCHamcrest/ \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment