1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Fix dependency graph.

This commit is contained in:
David Anderson 2013-11-18 12:42:17 -08:00
parent ff300f2384
commit cba89b459b

View File

@ -261,8 +261,6 @@ class MMSConfig(object):
for path in paths:
compiler.cxxincludes += [os.path.join(sdk.path, *path)]
compiler.sourcedeps += MMS.generated_headers
return compiler
def LibraryBuilder(self, compiler, name):
@ -278,6 +276,7 @@ class MMSConfig(object):
'-compatibility_version', '1.0.0',
'-current_version', self.productVersion
]
binary.compiler.sourcedeps += MMS.generated_headers
return binary
def Library(self, context, name):