add include in cmake lists#284
Open
Lixue9jiu wants to merge 2 commits into
Open
Conversation
Lixue9jiu
marked this pull request as ready for review
July 5, 2026 03:28
bjorn
reviewed
Jul 15, 2026
Comment on lines
+105
to
+108
| target_include_directories(enet | ||
| PUBLIC | ||
| ${PROJECT_SOURCE_DIR}/include | ||
| ) |
There was a problem hiding this comment.
Thanks, this is a welcome modernization! One suggestion: wrap the path in a BUILD_INTERFACE generator expression. As written it causes no error today because the install(TARGETS enet ...) rule has no EXPORT, but as soon as an export set is added, CMake will fail with "INTERFACE_INCLUDE_DIRECTORIES property contains a path prefixed in the source directory". Adding the generator expressions now costs nothing and keeps that door open (they are supported at the declared CMake 2.8.12 minimum).
Suggested change
| target_include_directories(enet | |
| PUBLIC | |
| ${PROJECT_SOURCE_DIR}/include | |
| ) | |
| target_include_directories(enet PUBLIC | |
| $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include> | |
| $<INSTALL_INTERFACE:include> | |
| ) |
This also matches the indentation style used elsewhere in the file, such as the install(TARGETS enet ...) block.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This allows the end user to do
and get the include directories set up by CMake, without defining the include directory manually.
It provides better integration with the CMake build system.