mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-05 05:26:22 +00:00
b856281197
Directly taken from https://premake.github.io/. Refs #3729. This was SVN commit r20366.
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
|