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

Fix some warnings in cmake #2940

Merged
merged 1 commit into from
Jun 26, 2024
Merged

Fix some warnings in cmake #2940

merged 1 commit into from
Jun 26, 2024

Commits on Jun 26, 2024

  1. Fix some warning in cmake

    re: Issue Unidata#2939
    
    The problem managing inter-dependent options.
    I was looking for certain cases of the form, where x and y are options.
    ````
    if( not x and y)
    message(warning "not x => not y)
    endif
    ````
    However in a couple of cases (including the referenced Issue), I was only testing this:
    ````
    if( not x)
    message(warning "not x => not y)
    endif
    ````
    
    Fix is to correct the tests.
    DennisHeimbigner committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    7d966b4 View commit details
    Browse the repository at this point in the history