Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2012-09-14 00:43:44 +0400
committerJason Perkins <starkos@industriousone.com>2012-09-14 00:43:44 +0400
commita4e68c68cf6b2364846937ac93e30ade58878a3e (patch)
tree0ffdb4e87ef04839b8722b8b9aefe178bc355a72 /tests
parentb872c9f9b03028386384224aed4c21e18f862d51 (diff)
Pull 1: Fixed path to Info.plist in Xcode projects (Adrien Anselme)
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/xcode/test_xcode_project.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/actions/xcode/test_xcode_project.lua b/tests/actions/xcode/test_xcode_project.lua
index 93a3fe7..a5071fe 100644
--- a/tests/actions/xcode/test_xcode_project.lua
+++ b/tests/actions/xcode/test_xcode_project.lua
@@ -961,7 +961,7 @@
end
function suite.XCBuildConfigurationTarget_OnInfoPlist()
- files { "MyProject-Info.plist" }
+ files { "../../MyProject-Info.plist" }
prepare()
xcode.XCBuildConfiguration_Target(tr, tr.products.children[1], tr.configs[1])
test.capture [[
@@ -972,7 +972,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
- INFOPLIST_FILE = "MyProject-Info.plist";
+ INFOPLIST_FILE = "../../MyProject-Info.plist";
INSTALL_PATH = /usr/local/bin;
PRODUCT_NAME = "MyProject";
};