This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/modules/android/android.lua

26 lines
479 B
Lua
Raw Normal View History

2013-10-30 17:08:01 +00:00
--
-- Create an android namespace to isolate the additions
2013-10-30 17:08:01 +00:00
--
2017-07-05 21:42:50 +00:00
local p = premake
2013-10-30 17:08:01 +00:00
2017-07-05 21:42:50 +00:00
if not p.modules.android then
require ("vstudio")
2017-07-05 21:42:50 +00:00
p.modules.android = {}
2015-04-13 15:36:08 +00:00
2015-10-15 13:05:33 +00:00
if _ACTION < "vs2015" then
configuration { "Android" }
system "android"
toolset "gcc"
end
2015-04-13 15:36:08 +00:00
-- TODO: configure Android debug environment...
include("vsandroid_vcxproj.lua")
2015-10-15 13:05:33 +00:00
include("vsandroid_sln2005.lua")
include("vsandroid_vstudio.lua")
include("vsandroid_androidproj.lua")
2017-07-05 21:42:50 +00:00
end
2013-10-30 17:08:01 +00:00
2017-07-05 21:42:50 +00:00
return p.modules.android