gmake: fix def libs/headers (#49009)

This commit is contained in:
Harmen Stoppels 2025-02-12 11:07:55 +01:00 committed by GitHub
parent fb9d6427e6
commit f043455ccc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,4 +102,8 @@ def setup_dependent_package(self, module, dspec):
@property @property
def libs(self): def libs(self):
return [] return LibraryList([])
@property
def headers(self):
return HeaderList([])