Merge pull request #965 from premake/tvandijck-patch-1

Move part of the workspace baking up
This commit is contained in:
Tom van Dijck 2017-12-06 13:08:55 -08:00 committed by GitHub
commit 059d7427ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,6 +105,13 @@
self.location = self.location or self.basedir
context.basedir(self, self.location)
-- Build a master list of configuration/platform pairs from all of the
-- projects contained by the workspace; I will need this when generating
-- workspace files in order to provide a map from workspace configurations
-- to project configurations.
self.configs = oven.bakeConfigs(self)
-- Now bake down all of the projects contained in the workspace, and
-- store that for future reference
@ -119,13 +126,6 @@
-- now we can post process the projects for 'buildoutputs' files
-- that have the 'compilebuildoutputs' flag
oven.addGeneratedFiles(self)
-- Build a master list of configuration/platform pairs from all of the
-- projects contained by the workspace; I will need this when generating
-- workspace files in order to provide a map from workspace configurations
-- to project configurations.
self.configs = oven.bakeConfigs(self)
end