Can now open project with a plist file

This commit is contained in:
starkos 2009-09-03 18:47:13 +00:00
parent 9e9eebc763
commit 320b204c31
2 changed files with 86 additions and 26 deletions

View File

@ -493,6 +493,46 @@
end
function xcode.XCBuildConfiguration(target, cfg)
local prj = target.prjnode.project
_p(2,'%s /* %s */ = {', target.cfgids[cfg.name], cfg.name)
_p(3,'isa = XCBuildConfiguration;')
_p(3,'buildSettings = {')
_p(4,'ALWAYS_SEARCH_USER_PATHS = NO;')
_p(4,'CONFIGURATION_BUILD_DIR = %s;', xcode.rebase(prj, cfg.buildtarget.directory))
if cfg.flags.Symbols then
_p(4,'COPY_PHASE_STRIP = NO;')
end
_p(4,'GCC_DYNAMIC_NO_PIC = NO;')
if cfg.flags.Symbols then
_p(4,'GCC_ENABLE_FIX_AND_CONTINUE = YES;')
end
_p(4,'GCC_MODEL_TUNING = G5;')
if #cfg.defines > 0 then
_p(4,'GCC_PREPROCESSOR_DEFINITIONS = (')
_p(table.implode(cfg.defines, "\t\t\t\t", ",\n"))
_p(4,');')
end
if target.prjnode.infoplist then
_p(4,'INFOPLIST_FILE = %s;', target.prjnode.infoplist.path)
end
_p(4,'PRODUCT_NAME = %s;', cfg.buildtarget.name)
_p(4,'SYMROOT = %s;', xcode.rebase(prj, cfg.objectsdir))
_p(3,'};')
_p(3,'name = %s;', cfg.name)
_p(2,'};')
end
function xcode.footer()
_p(1,'};')
_p('\trootObject = 08FB7793FE84155DC02AAC07 /* Project object */;')
@ -587,32 +627,7 @@
for _, target in ipairs(ctx.targets) do
local prj = target.prjnode.project
for cfg in premake.eachconfig(prj) do
_p(2,'%s /* %s */ = {', target.cfgids[cfg.name], cfg.name)
_p(3,'isa = XCBuildConfiguration;')
_p(3,'buildSettings = {')
_p(4,'ALWAYS_SEARCH_USER_PATHS = NO;')
_p(4,'CONFIGURATION_BUILD_DIR = %s;', xcode.rebase(prj, cfg.buildtarget.directory))
if cfg.flags.Symbols then
_p(4,'COPY_PHASE_STRIP = NO;')
end
_p(4,'GCC_DYNAMIC_NO_PIC = NO;')
if cfg.flags.Symbols then
_p(4,'GCC_ENABLE_FIX_AND_CONTINUE = YES;')
end
_p(4,'GCC_MODEL_TUNING = G5;')
if #cfg.defines > 0 then
_p(4,'GCC_PREPROCESSOR_DEFINITIONS = (')
_p(table.implode(cfg.defines, "\t\t\t\t", ",\n"))
_p(4,');')
end
if target.prjnode.infoplist then
_p(4,'INFOPLIST_FILE = %s', target.prjnode.infoplist.path)
end
_p(4,'PRODUCT_NAME = %s;', cfg.buildtarget.name)
_p(4,'SYMROOT = %s;', xcode.rebase(prj, cfg.objectsdir))
_p(3,'};')
_p(3,'name = %s;', cfg.name)
_p(2,'};')
xcode.XCBuildConfiguration(target, cfg)
end
end
for _, cfgname in ipairs(sln.configurations) do

View File

@ -439,3 +439,48 @@
/* End PBXVariantGroup section */
]]
end
--
-- XCBuildConfiguration section tests
--
function T.xcode3.XCBuildConfiguration_DefaultBlock()
prepare()
xcode.XCBuildConfiguration(ctx.targets[1], premake.getconfig(ctx.targets[1].prjnode.project, "Debug"))
test.capture [[
[MyProject:Debug] /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CONFIGURATION_BUILD_DIR = .;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
PRODUCT_NAME = MyProject;
SYMROOT = obj/Debug;
};
name = Debug;
};
]]
end
function T.xcode3.XCBuildConfiguration_SetsInfoPlist()
files { "Info.plist" }
prepare()
xcode.XCBuildConfiguration(ctx.targets[1], premake.getconfig(ctx.targets[1].prjnode.project, "Debug"))
test.capture [[
[MyProject:Debug] /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CONFIGURATION_BUILD_DIR = .;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
INFOPLIST_FILE = Info.plist;
PRODUCT_NAME = MyProject;
SYMROOT = obj/Debug;
};
name = Debug;
};
]]
end