-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install rules #110
base: master
Are you sure you want to change the base?
Install rules #110
Conversation
make the |
Should the It might be useful to have export YAPDIR=${CMAKE_INSTALL_PREFIX} I think we shouldn't rely on environment variables (thus we should change the examples and the tests). |
We should exclude the installation of the data files from the full installation (which should only install the headers and lib). Perhaps a custom target, |
So what are the targets that will be available. I gather there will be
But will there also be
|
There is
I wasn't able to default |
And there's no way to create our own separate target Another option would be to somehow exclude the action in |
make install
installs the header files in${CMAKE_INSTALL_PREFIX}/include/YAP
withrw-r--r--
permissions, and the shared library libYAP.so in${CMAKE_INSTALL_PREFIX}/lib
withrwxr-xr-x
permissions.Optionally a
DESTDIR
can be specified at installation-time:This will install the files in
${DESTDIR}/${CMAKE_INSTALL_PREFIX}
.@greenwald Which permissions should the
data/
files have when installed?