Giter Club home page Giter Club logo

Comments (4)

uknys avatar uknys commented on May 27, 2024

To make it work I used your script in the dependencies folder !

from dyno.

ldionne avatar ldionne commented on May 27, 2024

Ahhh. Actually, I think this is a bug with the Boost distribution. When you install Boost, it should install a lib/cmake/Hana/HanaConfig.cmake file with it, but it doesn't. Reopening to keep track of this.

from dyno.

ldionne avatar ldionne commented on May 27, 2024

To make it work I used your script in the dependencies folder !

Make sure you're not using both that script AND a global installation of Boost, since that could cause problems.

from dyno.

furkanusta avatar furkanusta commented on May 27, 2024

For people experiencing the same problem and want to use a global installation of Boost, I've used:

find_package(Hana QUIET)
if (Hana_FOUND)
  target_link_libraries(dyno INTERFACE hana)
else()
  find_package(Boost 1.61)
  if (Boost_FOUND)
    target_link_libraries(dyno INTERFACE Boost::boost)
  else()
    message(SEND_ERROR "hana not found: either install stand-alone or use Boost>=1.61")
  endif()
endif()

Do the same for CallableTraits as well (but change the version to 1.64).

Also we need to change cmake/dyno-config.cmake file as well.

include(CMakeFindDependencyMacro)
find_package(Hana QUIET)
if (NOT Hana_FOUND)
  find_package(Boost 1.61 REQUIRED)
endif()

find_package(CallableTraits QUIET)
if (NOT CallableTraits_FOUND)
  find_package(Boost 1.64 REQUIRED)
endif()

# Below is the same
if(NOT TARGET Dyno::dyno)
  include("${CMAKE_CURRENT_LIST_DIR}/dyno-targets.cmake")
endif()

I am not sure whether this should be reported to Boost or packagers of my distribution but this is a workaround. I can send a PR but this feels like dirty hack.

from dyno.

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.