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
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/xcode/xcode4_workspace.lua')
-rw-r--r--src/actions/xcode/xcode4_workspace.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/actions/xcode/xcode4_workspace.lua b/src/actions/xcode/xcode4_workspace.lua
index a17e654..9c2bc43 100644
--- a/src/actions/xcode/xcode4_workspace.lua
+++ b/src/actions/xcode/xcode4_workspace.lua
@@ -16,8 +16,8 @@ end
function xcode4.workspace_file_ref(prj)
local projpath = path.getrelative(prj.solution.location, prj.location)
- if projpath == '.' then projpath = ''
- else projpath = projpath ..'/'
+ if projpath == '.' then projpath = ''
+ else projpath = projpath ..'/'
end
_p(1,'<FileRef')
_p(2,'location = "group:%s">',projpath .. prj.name .. '.xcodeproj')
@@ -32,7 +32,7 @@ function xcode4.workspace_generate(sln)
for prj in premake.solution.eachproject(sln) do
xcode4.workspace_file_ref(prj)
end
-
+
xcode4.workspace_tail()
end