Skip to content
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

Add export targets for FetchContent #56

Conversation

SeverinDiederichs
Copy link
Contributor

This PR proposes to export the libraries core, cpu, and cuda to make them available for FetchContent builds.
This eases the integration into other projects and avoids to use the

# Hack for people using the disgusting mal-practice of pullling in external
# projects via "add_subdirectory"...
if(NOT PROJECT_IS_TOP_LEVEL)
    add_library(covfie::core ALIAS covfie_core)
endif()

With this PR, integration of covfie into AdePT by fetching it from source is as easy as:

    include(FetchContent)
    FetchContent_Declare(
      covfie
      GIT_REPOSITORY ${ADEPT_COVFIE_REPO}
      GIT_TAG ${ADEPT_COVFIE_BRANCH}
    )

    set(COVFIE_PLATFORM_CUDA ON CACHE BOOL "Enable CUDA support in covfie" FORCE)
    FetchContent_MakeAvailable(covfie)

@stephenswat
Copy link
Member

Hi Severin, thank you for the PR! Could you please elaborate what problems you face if you don't add this line? I think we are using the library succesfully through FetchContent in detray already, so I'm curious to know what problems you are facing and why.

@SeverinDiederichs SeverinDiederichs force-pushed the export_targets_for_FetchContent branch from 15940a8 to 7997102 Compare March 3, 2025 10:52
@SeverinDiederichs
Copy link
Contributor Author

SeverinDiederichs commented Mar 3, 2025

Just a summary, as we discussed this offline:

Without this PR, it the CMake configuration in AdePT fails with:

CMake Error in CMakeLists.txt:
  export called with target "AdePT_G4_integration" which requires target
  "covfie_core" that is not in any export set.

As far as I can tell, the reason is that covfie currently exports via
install(TARGETS covfie_core EXPORT ${PROJECT_NAME}Targets),
which registers covfie_* into the targets only for installation.

Using export(EXPORT ${PROJECT_NAME}Targets FILE "${CMAKE_BINARY_DIR}/${PROJECT_NAME}Targets.cmake") exports covfie_* such that it is registered already during the CMake configuration step. This way, it is available in FetchContenteven without an installation.
(This is my current understanding of the issue)

@stephenswat
Copy link
Member

Thanks a lot for the PR!

@stephenswat stephenswat changed the title add export targets for FetchContent Add export targets for FetchContent Mar 3, 2025
@stephenswat stephenswat merged commit d8102ab into acts-project:main Mar 3, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants