GithubHelp home page GithubHelp logo

Comments (2)

StableCoder avatar StableCoder commented on July 27, 2024

This looks to be an issue with the signature of GreeterTests

It looks like, wherever you've used target_link_libraries it hasn't been using the PRIVATE/INTERFACE/PUBLIC keywords, ala:

target_link_libraries(GreeterTests *library*)

rather than something like

target_link_libraries(GreeterTests PRIVATE *library*)

and the issue is that CMake enforces them all to be one style or the other. The code-coverage code is assuming that, unless it is specified as PUBLIC or INTERFACE at the call point, that it should be PRIVATE by default.

The reason it's only here is because only the GCC variant needs to link to an external library gcov. LLVM doesn't need to link into any external library.

Unfortunately, I can't see a way to programmatically determine if a keyword has been used to previous calls, so I'm going to keep the current behavior as-is.

To fix your case specifically, just add the appropriate keywords at the other callpoints to target_link_libraries for GreeterTests

from cmake-scripts.

mscofield0 avatar mscofield0 commented on July 27, 2024

With target_link_libraries(GreeterTests PRIVATE doctest::doctest Greeter::Greeter):

code-coverage.cmake:447 (add_dependencies):
  The dependency target "ccov-report-GreeterTests" of target "ccov-report"
  does not exist.

from cmake-scripts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.