Skip to content

Instantly share code, notes, and snippets.

@vprus
Created August 27, 2014 06:17
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 vprus/a38931b8f380bcf51669 to your computer and use it in GitHub Desktop.
Save vprus/a38931b8f380bcf51669 to your computer and use it in GitHub Desktop.
Example of post-install action in Boost.Build
import notfile ;
exe hello : hello.cpp ;
notfile install : @postinstall : install-really ;
install install-really : hello : <location>dist ;
explicit install-really ;
actions postinstall
{
strip $(>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment