Skip to content

build(libevhtp): support Conan CMakeDeps imported targets#74

Draft
mc-nv wants to merge 1 commit into
mainfrom
mchornyi/TRI-122/conan-next
Draft

build(libevhtp): support Conan CMakeDeps imported targets#74
mc-nv wants to merge 1 commit into
mainfrom
mchornyi/TRI-122/conan-next

Conversation

@mc-nv
Copy link
Copy Markdown
Contributor

@mc-nv mc-nv commented Apr 13, 2026

Resolves: TRI-122
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

  • build(libevhtp): support Conan CMakeDeps imported targets

Affected Files

  • libevhtp/libevhtp/CMakeLists.txt

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant