wgl: find headers recursive

This commit is contained in:
Harmen Stoppels 2024-11-12 09:52:21 +01:00
parent e035bd176a
commit 39cf85ae26

View File

@ -94,7 +94,9 @@ def _spec_arch_to_sdk_arch(self):
# As noted above, the headers neccesary to include
@property
def headers(self):
return find_headers("GL", root=os.path.join(self.prefix.Include, str(self.version) + ".0"))
return find_headers(
"GL", root=os.path.join(self.prefix.Include, str(self.version) + ".0"), recursive=True
)
@property
def libs(self):