mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Add "inc" as sign that it's the root of the library (#4093)
* Add "inc" as sign that it's the root of the library * Add "inc" and "Inc" Co-authored-by: Ivan Kravets <me@ikravets.com>
This commit is contained in:
committed by
GitHub
parent
00d298935a
commit
1d80da2559
@ -62,7 +62,7 @@ class LibraryPackageManager(BasePackageManager): # pylint: disable=too-many-anc
|
||||
|
||||
@staticmethod
|
||||
def find_library_root(path):
|
||||
root_dir_signs = set(["include", "Include", "src", "Src"])
|
||||
root_dir_signs = set(["include", "Include", "inc", "Inc", "src", "Src"])
|
||||
root_file_signs = set(
|
||||
[
|
||||
"conanfile.py", # Conan-based library
|
||||
|
Reference in New Issue
Block a user