build(libevhtp): support Conan CMakeDeps imported targets#74
Draft
mc-nv wants to merge 1 commit into
Draft
Conversation
When building via Conan, CMakeDeps generates libevent::libevent as
an IMPORTED target and does not populate the legacy LIBEVENT_LIBRARIES
/ LIBEVENT_INCLUDE_DIRS variables. Add a conditional so both
Conan-managed and standalone Find-module builds work:
if(TARGET libevent::libevent)
list(APPEND LIBEVHTP_EXTERNAL_LIBS libevent::libevent)
else()
list(APPEND ... ${LIBEVENT_LIBRARIES})
list(APPEND ... ${LIBEVENT_INCLUDE_DIRS})
endif()
Also relax cmake_minimum_required from 3.31.8 → 3.10 so the library
can be consumed in environments without a bleeding-edge CMake.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Apr 13, 2026
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.
triton-inference-server/backend#123
triton-inference-server/common#154
triton-inference-server/core#490
triton-inference-server/server#8734
Description
Updates the libevhtp CMakeLists.txt to support Conan CMakeDeps-generated imported targets, enabling proper integration with the new Conan 2 + CMakePresets build system adopted across the Triton repositories.
Changes
Affected Files