Update to current conventions (#1)

This commit is contained in:
Patrick Doane 2017-07-05 14:42:50 -07:00 committed by GitHub Enterprise
parent e146dd4de8
commit 568a84b1dc
2 changed files with 9 additions and 5 deletions

View File

@ -118,3 +118,7 @@
"disabled",
},
}
return function(cfg)
return true
end

View File

@ -2,11 +2,10 @@
--
-- Create an android namespace to isolate the additions
--
premake.modules.android = {}
local p = premake
local android = premake.modules.android
include("_preload.lua")
if not p.modules.android then
p.modules.android = {}
if _ACTION < "vs2015" then
configuration { "Android" }
@ -20,5 +19,6 @@
include("vsandroid_sln2005.lua")
include("vsandroid_vstudio.lua")
include("vsandroid_androidproj.lua")
end
return android
return p.modules.android