af7b674265
As discussed numerous times, get rid of the submodule approach for core modules and just included the sources directly in the main repository. I have no idea how this will play with existing working copies. It might be necessary to [manually clear out the existing submodules](http://stackoverflow.com/questions/1260748) first.
20 lines
363 B
Lua
20 lines
363 B
Lua
---
|
|
-- xcode/xcode.lua
|
|
-- Common support code for the Apple Xcode exporters.
|
|
-- Copyright (c) 2009-2015 Jason Perkins and the Premake project
|
|
---
|
|
|
|
local p = premake
|
|
|
|
p.modules.xcode = {}
|
|
|
|
local m = p.modules.xcode
|
|
m._VERSION = p._VERSION
|
|
m.elements = {}
|
|
|
|
include("xcode_common.lua")
|
|
include("xcode4_workspace.lua")
|
|
include("xcode_project.lua")
|
|
|
|
return m
|