Initial community commit
This commit is contained in:
25
Src/external_dependencies/openmpt-trunk/include/premake/modules/android/android.lua
vendored
Normal file
25
Src/external_dependencies/openmpt-trunk/include/premake/modules/android/android.lua
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
--
|
||||
-- Create an android namespace to isolate the additions
|
||||
--
|
||||
local p = premake
|
||||
|
||||
if not p.modules.android then
|
||||
require ("vstudio")
|
||||
p.modules.android = {}
|
||||
|
||||
if _ACTION < "vs2015" then
|
||||
configuration { "Android" }
|
||||
system "android"
|
||||
toolset "gcc"
|
||||
end
|
||||
|
||||
-- TODO: configure Android debug environment...
|
||||
|
||||
include("vsandroid_vcxproj.lua")
|
||||
include("vsandroid_sln2005.lua")
|
||||
include("vsandroid_vstudio.lua")
|
||||
include("vsandroid_androidproj.lua")
|
||||
end
|
||||
|
||||
return p.modules.android
|
||||
Reference in New Issue
Block a user