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

CMakeLists.txt: Do not require C++ #3926

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Nov 22, 2024

  1. CMakeLists.txt: Do not require C++

    By default, the project() CMake command defaults to C and C++. [1]
    Therefore, CMake might perform tests for both C and C++ compilers as
    part of the configuration phase.
    
    However, this has the consequence of the configuration phase to fail if
    the system does not have a C++ toolchain installed, even if C++ is not
    really used by the project.
    
    [1]: https://cmake.org/cmake/help/latest/command/project.html
    midokura-xavi92 committed Nov 22, 2024
    Configuration menu
    Copy the full SHA
    42b29ad View commit details
    Browse the repository at this point in the history