Support sudo make install to install the patchworkpp package in the local environment (9c66c01).
Without patchwork directory, the patchworkpp.h goes to the following directory:
-- Installing: /usr/local/include/patchworkpp.h
, which lead to an a bit ambiguous include command in another package as follows:
#include <patchworkpp.h>
So, I add patchwork directory (a6b47ab). By doing so, it goes to
-- Up-to-date: /usr/local/include/patchwork/patchworkpp.h
and we can use it as
#include <patchwork/patchworkpp.h>
Finally, add another package to demonstrate how to include patchworkpp package in another package (1adebe6)
Support
sudo make install
to install thepatchworkpp
package in the local environment (9c66c01).Without
patchwork
directory, thepatchworkpp.h
goes to the following directory: -- Installing: /usr/local/include/patchworkpp.h , which lead to an a bit ambiguous include command in another package as follows:#include <patchworkpp.h>
So, I add
patchwork
directory (a6b47ab). By doing so, it goes to -- Up-to-date: /usr/local/include/patchwork/patchworkpp.hand we can use it as
#include <patchwork/patchworkpp.h>
Finally, add another package to demonstrate how to include
patchworkpp
package in another package (1adebe6)