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

Add wildcard support for includeDir #10388

Merged
merged 3 commits into from
Jun 27, 2023
Merged

Add wildcard support for includeDir #10388

merged 3 commits into from
Jun 27, 2023

Commits on Jun 18, 2023

  1. Add wildcard support for includeDir

    For example, using the following tree:
    
      rootUri
      - sources
        - main
          - main.c
        - vendor
          - khash.h
      - headers
        - C001
          - a.h
        - C002
          - b.h
    
    The following directory paths works:
    
    - `sources/**`  for plain old recursive path
    - `headers/C*/` dynamic path
    - `missing/`    reported as "not found"
    - `missing/*`   expanded as empty result (silent fail)
    
    Note: bakslash paths need to be slash-converted to avoid be considered as "Dynamic"
    yne committed Jun 18, 2023
    Configuration menu
    Copy the full SHA
    7fdf01f View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

  1. Configuration menu
    Copy the full SHA
    ae7a49a View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. Configuration menu
    Copy the full SHA
    e05f83a View commit details
    Browse the repository at this point in the history