-
Notifications
You must be signed in to change notification settings - Fork 147
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
CMake install path #126
Comments
Hi! In fact, it's enough just to put the symbol install(DIRECTORY "${PROJECT_DIR_API_HEADER}/" DESTINATION "include" FILES_MATCHING PATTERN "*.h") Your option seems to me more correct, I applied it. |
Not sure if it's quiet the same tho as your option would cause CMake to change the output directory permissions (I'm talking about the PS: What about my question regarding a potential release date ? |
Last Release 4.0.4 12 hour ago. |
Thank you very much ! I'm closing the issue 👍 |
This line in your
CMakeLists.txt
makes CMake install header files in/usr/local/include/include/
instead of/usr/local/include
. Consider changing it to :This installs all subdirectories contained in
include
one by one.Also are you planning on releasing version
4.0.3
(or4.1
) with all the recent changes ? I'm really looking forward to this so I can rely on a version of your library which supports CMake builds.Thank you for the time you spend on this and your amazing work. I'm using
myhtml
in one of my project and it rocks !The text was updated successfully, but these errors were encountered: