Git Product home page Git Product logo

Comments (4)

mosra avatar mosra commented on April 28, 2024

Thanks for the information, I hear about CMAKE_<CONFIG>_POSTFIX for the first time. I have a few questions, however:

  • What is the exact use case? I suppose this is done so the debug, dynamic and static libraries can coexist and the user would be able to select between them when calling find_package(Magnum).
  • Static and dynamic libraries are (at least on Linux and Windows, don't know about OSX) differentiated by extension (e.g. .a and .so), so they can coexist (although CMake is hardcoded to use the dynamic one by default). But the information about how the library is built is saved in magnumConfigure.h as MAGNUM_BUILD_STATIC preprocessor definiton and thus the include files for these two versions would need to be installed to separate locations to avoid conflicts anyway.
  • How is the postfix handled when finding the library using find_library() (i.e. from FindMagnum.cmake)? I suppose that just find_library(Magnum) won't simply be able to find libMagnum_d_s.so. More importantly, how would the user request specific library version from find_package()? Documentation for find_library() and find_package() doesn't mention anything which would help in this case.

from magnum.

miguelmartin75 avatar miguelmartin75 commented on April 28, 2024

What is the exact use case? I suppose this is done so the debug, dynamic and static libraries can coexist and the user would be able to select between them when calling find_package(Magnum).

To explicitly statically link or dynamically link. And also to explicitly determine which type of binary to link to for debug and release builds.

How is the postfix handled when finding the library using find_library() (i.e. from FindMagnum.cmake)? I suppose that just find_library(Magnum) won't simply be able to find libMagnum_d_s.so. More importantly, how would the user request specific library version from find_package()? Documentation for find_library() and find_package() doesn't mention anything which would help in this case.

I'm actually not sure, but SFML does use _s and _d (or -d/-s, not sure) suffixes in it's library and it does use CMake. https://github.com/LaurentGomila/SFML/blob/master/cmake/Modules/FindSFML.cmake

from magnum.

mosra avatar mosra commented on April 28, 2024

Thanks for the SFML example, I will look into it.

from magnum.

mosra avatar mosra commented on April 28, 2024

Debug/release library distinction is done as discussed in #45. Thanks again for the SFML module, it was very helpful.

On the other hand, static/dynamic libraries cannot coexist because of the reason mentioned above (different generated include file), thus they still need to be installed to (and later found in) separate location and that is nothing the build system could possibly help with.

from magnum.

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.