Default makefiles to native platform

This commit is contained in:
starkos 2009-04-21 20:00:17 +00:00
parent fc705c245e
commit 3c29c5dc4d
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
local cc = premake[_OPTIONS.cc]
-- build a list of supported target platforms that also includes a generic build
local platforms = premake.filterplatforms(prj.solution, cc.platforms)
local platforms = premake.filterplatforms(prj.solution, cc.platforms, "Native")
-- write a quick header
_p('# %s project makefile autogenerated by Premake', premake.actions[_ACTION].shortname)

View File

@ -9,7 +9,7 @@
local cc = premake[_OPTIONS.cc]
-- build a list of supported target platforms that also includes a generic build
local platforms = premake.filterplatforms(sln, cc.platforms)
local platforms = premake.filterplatforms(sln, cc.platforms, "Native")
-- write a header showing the build options
local cfgpairs = { }